Skip to content

Commit 7774935

Browse files
committed
Update gradle and add external links to Javadoc generation
1 parent 6bdbdb1 commit 7774935

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

build.gradle

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
11
plugins {
22
id 'java'
3+
id 'java-library'
34
}
45

56
repositories {
67
jcenter()
78
mavenCentral()
8-
maven {
9-
url 'https://jitpack.io'
10-
}
119
}
1210

1311
dependencies {
14-
compile 'com.flowpowered:flow-math:1.0.3'
12+
api 'com.flowpowered:flow-math:1.0.3'
1513
}
1614

1715
apply plugin: 'java'
1816

1917
group = 'de.bluecolored.bluemap.api'
20-
version = apiVersion
18+
version = apiVersion
19+
20+
javadoc {
21+
options {
22+
links += [
23+
'https://docs.oracle.com/javase/8/docs/api/',
24+
'https://javadoc.io/doc/com.flowpowered/flow-math/1.0.3/'
25+
]
26+
}
27+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)