Skip to content

Commit

Permalink
fix: itest
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangmaihuy committed Nov 29, 2023
1 parent e36932c commit 8cde528
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ object itest extends MillIntegrationTestModule {

override def testInvocations = Seq(
PathRef(testBase / "do-not-fail-on-conflicts") -> successMissinglinkCheck,
PathRef(testBase / "exclude-problematic-dependency") -> successMissinglinkCheck,
PathRef(testBase / "exclude-problematic-dependency") -> errorMissinglinkCheck,
PathRef(testBase / "has-problematic-dependency") -> errorMissinglinkCheck,
PathRef(testBase / "ignore-destination-package") -> successMissinglinkCheck,
PathRef(testBase / "ignore-source-package") -> successMissinglinkCheck,
PathRef(testBase / "ignores-unused-dependency") -> errorMissinglinkCheck,
PathRef(testBase / "ignores-unused-dependency") -> successMissinglinkCheck,
PathRef(testBase / "scans-dependencies") -> errorMissinglinkCheck,
PathRef(testBase / "target-destination-package") -> successMissinglinkCheck,
PathRef(testBase / "target-source-package") -> errorMissinglinkCheck,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,14 +148,14 @@ trait MissinglinkCheckModule extends JavaModule {
)
}

println("Checking for conflicts starting from " + projectArtifact.name().name())
println("Artifacts included in the project: ")
log.debug("Checking for conflicts starting from " + projectArtifact.name().name())
log.debug("Artifacts included in the project: ")
for (artifact <- runtimeArtifactsAfterExclusions) {
println(" " + artifact.name().name())
log.debug(" " + artifact.name().name())
}
println("All artifacts: ")
log.debug("All artifacts: ")
for (artifact <- allArtifacts) {
println(" " + artifact.name().name())
log.debug(" " + artifact.name().name())
}

val conflictChecker = new ConflictChecker
Expand Down

0 comments on commit 8cde528

Please sign in to comment.