This repository was archived by the owner on Feb 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed
Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,9 @@ buildscript {
44}
55
66apply plugin : ' java-library'
7- apply plugin : ' groovy'
87
98group ' de.kaleidox'
10- version ' 1.0.0 '
9+ version ' 1.0.1 '
1110
1211apply from : ' gradle/vars.gradle'
1312
@@ -25,15 +24,24 @@ task sourcesJar(type: Jar) {
2524}
2625
2726task javadocJar (type : Jar ) {
28- javadoc
27+ doFirst {
28+ javadoc
29+ }
30+
2931 from javadoc. destinationDir
3032 archiveClassifier = " javadoc"
3133}
3234
3335javadoc {
3436 source = sourceSets. main. java
35- options. encoding = ' UTF-8'
36- options. destinationDirectory(file(" ./docs/" ))
37+ options {
38+ encoding = ' UTF-8'
39+ destinationDirectory(file(" ./docs/" ))
40+ links = [
41+ " https://docs.oracle.com/javase/8/docs/api/" ,
42+ " https://docs.oracle.com/javaee/7/api/"
43+ ]
44+ }
3745}
3846
3947compileJava. options. encoding = ' UTF-8'
@@ -48,7 +56,7 @@ dependencies {
4856
4957sourceSets {
5058 main. java. srcDirs = [" src\\ main\\ java" ]
51- test. groovy . srcDirs = [" src\\ test\\ groovy " ]
59+ test. java . srcDirs = [" src\\ test\\ java " ]
5260}
5361
5462apply from : ' gradle/publishing.gradle'
You can’t perform that action at this time.
0 commit comments