File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,14 +12,26 @@ repositories {
1212}
1313
1414project. ext {
15- jme = ' 3.8.0-alpha2'
16- boost = ' 1.2.3'
15+ jmeVer = ' 3.8.0-alpha2'
1716}
1817
1918dependencies {
20- implementation " org.jmonkeyengine:jme3-core:$jme "
21- implementation " org.jmonkeyengine:jme3-lwjgl3:$jme "
22- implementation " com.github.codex128:Boost:$boost "
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+ // remove the generated javadocs in the /docs folder
25+ task cleanJavadoc (type : Delete ) {
26+ delete " $projectDir /docs/javadoc/"
27+ }
28+
29+ clean {
30+ dependsOn cleanJavadoc
31+ }
32+
33+ build {
34+
2335}
2436
2537task sourcesJar (type : Jar ) {
@@ -38,7 +50,7 @@ javadoc {
3850
3951publishing {
4052 publications {
41- library (MavenPublication ) {
53+ MyPublication (MavenPublication ) {
4254 from components. java
4355 artifact sourcesJar
4456 artifact javadocJar
You can’t perform that action at this time.
0 commit comments