File tree Expand file tree Collapse file tree 2 files changed +17
-11
lines changed
Expand file tree Collapse file tree 2 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 1- Manifest-Version : 2.0.0
1+ Manifest-Version : 2.0.1
22Specification-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
Original file line number Diff line number Diff line change @@ -16,22 +16,18 @@ targetCompatibility = 1.8
1616
1717group ' org.indilib.i4j'
1818description = ' INDIForJava-client'
19- version ' 2.0.0 '
19+ version ' 2.0.1 '
2020
2121dependencies {
2222 api ' com.github.INDIForJava:INDIForJava-driver:2.0.0'
2323}
2424
2525jar {
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
3733task 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+
4854artifacts {
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
You can’t perform that action at this time.
0 commit comments