File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ configurations.configureEach {
25
25
26
26
tasks. register(' checkstyle' ) {
27
27
dependsOn ' :nifty:checkstyleMain' , ' :tests:checkstyleMain' , ' :x:checkstyleMain'
28
- description ' Checks the style of all Java sourcecode.'
28
+ description = ' Checks the style of all Java sourcecode.'
29
29
}
30
30
31
31
def mergedJavadocSubprojects = [ " :nifty" , " :x" ]
32
32
tasks. register(' mergedJavadoc' , Javadoc ) {
33
- description ' Creates Javadoc from all the projects.'
33
+ description = ' Creates Javadoc from all the projects.'
34
34
destinationDir = new File (project. buildDir, ' merged-javadoc' )
35
35
title = ' All modules'
36
36
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ tasks.withType(JavaExec).configureEach { // Java runtime options:
30
30
// args '--verbose' // to enable additional log output
31
31
classpath sourceSets. main. runtimeClasspath
32
32
dependsOn ' installDist'
33
- enableAssertions true
33
+ enableAssertions = true
34
34
// jvmArgs '-verbose:gc'
35
35
// jvmArgs '-Xms512m', '-Xmx512m' // to enlarge the Java heap
36
36
// jvmArgs '-XX:+UseG1GC', '-XX:MaxGCPauseMillis=10'
Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ dependencies {
24
24
25
25
tasks. register(' install' ) {
26
26
dependsOn ' publishMavenPublicationToMavenLocal'
27
- description ' Installs Maven artifacts to the local repository.'
27
+ description = ' Installs Maven artifacts to the local repository.'
28
28
}
29
29
tasks. register(' release' ) {
30
30
dependsOn ' publishMavenPublicationToOSSRHRepository'
31
- description ' Stages Maven artifacts to Sonatype OSSRH.'
31
+ description = ' Stages Maven artifacts to Sonatype OSSRH.'
32
32
}
33
33
34
34
jar {
You can’t perform that action at this time.
0 commit comments