File tree 3 files changed +24
-4
lines changed
3 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : java
2
+ cache :
3
+ directories :
4
+ - $HOME/.gradle
2
5
notifications :
3
6
email : false
4
7
jdk :
5
8
- oraclejdk8
6
- script : ./gradlew setupCIWorkspace build --refresh-dependencies
9
+ install : ./gradlew setupCIWorkspace -S
10
+ script : ./gradlew build -S
7
11
before_install :
8
12
- chmod a+x gradlew
Original file line number Diff line number Diff line change @@ -75,6 +75,21 @@ processResources
75
75
}
76
76
}
77
77
78
+ task apiJar (type : Jar ) {
79
+ classifier = ' apiClasses'
80
+ from apiClasses
81
+ }
82
+
83
+ task javadocJar (type : Jar ) {
84
+ classifier = ' javadoc'
85
+ from javadoc
86
+ }
87
+
88
+ artifacts {
89
+ // archives apiJar
90
+ archives javadocJar
91
+ }
92
+
78
93
curseforge {
79
94
project {
80
95
apiKey = ' '
@@ -87,7 +102,8 @@ curseforge {
87
102
requiredLibrary ' base-metals'
88
103
optionalLibrary ' additional-loot-tables'
89
104
}
90
-
105
+ addArtifact sourceJar
106
+ addArtifact javadocJar
91
107
}
92
108
}
93
109
}
Original file line number Diff line number Diff line change 1
- # Thu Apr 21 15:09:10 PDT 2016
1
+ # Mon Apr 25 14:51:00 PDT 2016
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-2.12 -bin.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-2.13 -bin.zip
You can’t perform that action at this time.
0 commit comments