@@ -3,7 +3,7 @@ buildscript {
3
3
dependencies { classpath " com.github.spullara.mustache.java:compiler:${ VER_MUSTACHE} " }
4
4
}
5
5
plugins {
6
- id ' cz.malohlava' version ' 1.0.3 ' // https://github.com/mmalohlava/gradle-visteg
6
+ id ' cz.malohlava.visteg ' version ' 1.0.5 ' // https://github.com/mmalohlava/gradle-visteg
7
7
}
8
8
9
9
// to generate taskGraph.pdf
@@ -72,15 +72,15 @@ dependencies {
72
72
compileOnly " org.eclipse.aether:aether-api:${ VER_ECLIPSE_AETHER} "
73
73
compileOnly " org.eclipse.aether:aether-util:${ VER_ECLIPSE_AETHER} "
74
74
75
- testCompile project(" :testlib" )
76
- testCompile " junit:junit:${ VER_JUNIT} "
77
- testCompile " org.assertj:assertj-core:${ VER_ASSERTJ} "
78
- testCompile " org.mockito:mockito-core:${ VER_MOCKITO} "
79
- testCompile " com.diffplug.durian:durian-testlib:${ VER_DURIAN} "
80
- testCompile " com.github.spullara.mustache.java:compiler:${ VER_MUSTACHE} "
81
- testCompile " org.apache.maven:maven-plugin-api:${ VER_MAVEN_API} "
82
- testCompile " org.eclipse.aether:aether-api:${ VER_ECLIPSE_AETHER} "
83
- testCompile " org.codehaus.plexus:plexus-resources:${ VER_PLEXUS_RESOURCES} "
75
+ testImplementation project(" :testlib" )
76
+ testImplementation " junit:junit:${ VER_JUNIT} "
77
+ testImplementation " org.assertj:assertj-core:${ VER_ASSERTJ} "
78
+ testImplementation " org.mockito:mockito-core:${ VER_MOCKITO} "
79
+ testImplementation " com.diffplug.durian:durian-testlib:${ VER_DURIAN} "
80
+ testImplementation " com.github.spullara.mustache.java:compiler:${ VER_MUSTACHE} "
81
+ testImplementation " org.apache.maven:maven-plugin-api:${ VER_MAVEN_API} "
82
+ testImplementation " org.eclipse.aether:aether-api:${ VER_ECLIPSE_AETHER} "
83
+ testImplementation " org.codehaus.plexus:plexus-resources:${ VER_PLEXUS_RESOURCES} "
84
84
}
85
85
86
86
task cleanMavenProjectDir (type : Delete ) { delete MAVEN_PROJECT_DIR }
@@ -173,7 +173,7 @@ task runMavenBuild(type: Exec, dependsOn: [
173
173
commandLine mvnw(" clean install -B -Dmaven.repo.local=${ LOCAL_MAVEN_REPO_DIR} " )
174
174
}
175
175
176
- jar. deleteAllActions ()
176
+ jar. setActions Arrays . asList ()
177
177
jar. dependsOn(runMavenBuild)
178
178
jar. doLast {
179
179
Files . copy(
0 commit comments