You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2023/01/09 17:16:22 UTC

[maven-enforcer] branch master updated: Fix IT test after merge

This is an automated email from the ASF dual-hosted git repository.

sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-enforcer.git


The following commit(s) were added to refs/heads/master by this push:
     new bc4e3fd  Fix IT test after merge
bc4e3fd is described below

commit bc4e3fd7aac81dd63427c068d7e0310cde2722dc
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Mon Jan 9 18:16:06 2023 +0100

    Fix IT test after merge
---
 .../src/it/projects/non-exeisting-optional-dependency/verify.groovy     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maven-enforcer-plugin/src/it/projects/non-exeisting-optional-dependency/verify.groovy b/maven-enforcer-plugin/src/it/projects/non-exeisting-optional-dependency/verify.groovy
index 4e8a492..3916cf3 100644
--- a/maven-enforcer-plugin/src/it/projects/non-exeisting-optional-dependency/verify.groovy
+++ b/maven-enforcer-plugin/src/it/projects/non-exeisting-optional-dependency/verify.groovy
@@ -22,7 +22,7 @@ def buildLog = new File( basedir, 'build.log' ).text
 assert buildLog.contains( '[WARNING] The POM for org.example:test-not-existing:jar:1.0 is missing, no dependency information available' )
 
 // rule executed
-assert buildLog.contains( '[INFO] Rule 0: org.apache.maven.plugins.enforcer.AlwaysPass executed' )
+assert buildLog.contains( '[INFO] Rule 0: org.apache.maven.enforcer.rules.AlwaysPass executed' )
 assert buildLog.contains( '[INFO] Rule 1: org.apache.maven.plugins.enforcer.BanTransitiveDependencies executed' )
 assert buildLog.contains( '[INFO] Rule 2: org.apache.maven.plugins.enforcer.BannedDependencies executed' )
 assert buildLog.contains( '[INFO] Rule 3: org.apache.maven.plugins.enforcer.DependencyConvergence executed')