We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 628c333 commit 30767d7Copy full SHA for 30767d7
src/it/MCOMPILER-275_separate-moduleinfo/verify.groovy
@@ -20,7 +20,9 @@ def log = new File( basedir, 'build.log').text
20
21
assert log.count( "[INFO] Toolchain in maven-compiler-plugin: JDK" ) == 1
22
23
-assert log.count( "[INFO] Changes detected - recompiling the module!" ) == 3
+assert log.count( "[INFO] Recompiling the module because of changed source code." ) == 1
24
+assert log.count( "[INFO] Recompiling the module because of added or removed source files." ) == 1
25
+assert log.count( "[INFO] Recompiling the module because of changed dependency." ) == 1
26
27
// major_version: 52 = java8 -> execution id "base-compile"
28
assert new File( basedir, 'target/classes/com/foo/MyClass.class' ).bytes[7] == 52
0 commit comments