Skip to content

Commit d59aafd

Browse files
committed
cleaned up build
1 parent 08ed768 commit d59aafd

1 file changed

Lines changed: 6 additions & 22 deletions

File tree

RenthylCore/build.gradle

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,14 @@ repositories {
1212
}
1313

1414
project.ext {
15-
jmeVer = '3.8.0-alpha2'
15+
jme = '3.8.0-alpha2'
16+
boost = '1.2.3'
1617
}
1718

1819
dependencies {
19-
implementation "org.jmonkeyengine:jme3-core:$jmeVer"
20-
implementation "org.jmonkeyengine:jme3-lwjgl3:$jmeVer"
21-
implementation "com.github.codex128:Boost:1.2.3"
22-
}
23-
24-
task copyJavadoc(dependsOn: javadoc) {
25-
26-
}
27-
28-
// remove the generated javadocs in the /docs folder
29-
task cleanJavadoc(type: Delete) {
30-
delete "$projectDir/docs/javadoc/"
31-
}
32-
33-
clean {
34-
dependsOn cleanJavadoc
35-
}
36-
37-
build {
38-
dependsOn copyJavadoc
20+
implementation "org.jmonkeyengine:jme3-core:$jme"
21+
implementation "org.jmonkeyengine:jme3-lwjgl3:$jme"
22+
implementation "com.github.codex128:Boost:$boost"
3923
}
4024

4125
task sourcesJar(type: Jar) {
@@ -54,7 +38,7 @@ javadoc {
5438

5539
publishing {
5640
publications {
57-
MyPublication(MavenPublication) {
41+
library(MavenPublication) {
5842
from components.java
5943
artifact sourcesJar
6044
artifact javadocJar

0 commit comments

Comments
 (0)