Skip to content

Commit

Permalink
Update GuideProjectGenerator.groovy
Browse files Browse the repository at this point in the history
  • Loading branch information
sdelamo authored Sep 4, 2024
1 parent a464b3e commit ccf1a10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class GuideProjectGenerator implements AutoCloseable {
buildTools: config.buildTools ?: ['gradle', 'maven'],
testFramework: config.testFramework,
skipGradleTests: config.skipGradleTests ?: false,
skipMavenTests: true,//TODO config.skipMavenTests ?: false,
skipMavenTests: config.skipMavenTests ?: false,
minimumJavaVersion: config.minimumJavaVersion,
maximumJavaVersion: config.maximumJavaVersion,
skips: (config.skips.collect { new GuideMetadata.Skip(it[0], it[1]) } ?: []).toSet(),
Expand Down

0 comments on commit ccf1a10

Please sign in to comment.