Skip to content

Commit 9d40498

Browse files
Update IntelliJ files
1 parent 9c1eeb5 commit 9d40498

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

META-INF/MANIFEST.MF

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Manifest-Version: 2.0.0
1+
Manifest-Version: 2.0.1
22
Specification-Vendor: INDIForJava
3-
Name: org/indilib/i4j
4-
Specification-Title: INDIForJava
5-
Specification-Version: 2.0.0
3+
Name: org/indilib/i4j/client
4+
Specification-Title: INDIForJava-client
5+
Specification-Version: 2.0.1

build.gradle

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,18 @@ targetCompatibility = 1.8
1616

1717
group 'org.indilib.i4j'
1818
description = 'INDIForJava-client'
19-
version '2.0.0'
19+
version '2.0.1'
2020

2121
dependencies {
2222
api 'com.github.INDIForJava:INDIForJava-driver:2.0.0'
2323
}
2424

2525
jar {
2626
archivesBaseName = project.name
27-
destinationDirectory = file("build/")
2827
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
2928
manifest {
3029
from 'META-INF/MANIFEST.MF'
3130
}
32-
from {
33-
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
34-
}
3531
}
3632

3733
task sourcesJar(type: Jar, dependsOn: classes) {
@@ -45,6 +41,16 @@ task javadocJar(type: Jar) {
4541
from javadoc
4642
}
4743

44+
task fatJar(type: Jar, dependsOn: classes) {
45+
from sourceSets.main.allSource
46+
classifier "sources"
47+
extension "jar"
48+
destinationDirectory = file("build/")
49+
from {
50+
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
51+
}
52+
}
53+
4854
artifacts {
4955
archives javadocJar, sourcesJar
5056
}
@@ -66,8 +72,8 @@ configure(install.repositories.mavenInstaller) {
6672

6773
licenses {
6874
license {
69-
name = 'GNU General Public License'
70-
url = 'https://www.gnu.org/licenses/gpl-3.0.txt'
75+
name = 'GNU Lesser General Public License'
76+
url = 'https://www.gnu.org/licenses/lgpl-3.0.txt'
7177
}
7278
}
7379

0 commit comments

Comments
 (0)