Skip to content

Commit

Permalink
[MINVOKER-332] Update plugins versions used in ITs
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Mar 27, 2023
1 parent 460582c commit 3e4f3c9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -374,24 +374,24 @@ under the License.
<!-- plugins versions used in IT tests -->
<antrunPluginVersion>3.1.0</antrunPluginVersion>
<cleanPluginVersion>3.2.0</cleanPluginVersion>
<compilerPluginVersion>3.10.1</compilerPluginVersion>
<enforcerPluginVersion>3.1.0</enforcerPluginVersion>
<helpPluginVersion>3.3.0</helpPluginVersion>
<installPluginVersion>3.1.0</installPluginVersion>
<compilerPluginVersion>3.11.0</compilerPluginVersion>
<enforcerPluginVersion>3.2.1</enforcerPluginVersion>
<helpPluginVersion>3.4.0</helpPluginVersion>
<installPluginVersion>3.1.1</installPluginVersion>
<jarPluginVersion>3.3.0</jarPluginVersion>
<pluginPluginVersion>3.7.0</pluginPluginVersion>
<resourcesPluginVersion>3.3.0</resourcesPluginVersion>
<pluginPluginVersion>3.8.1</pluginPluginVersion>
<resourcesPluginVersion>3.3.1</resourcesPluginVersion>
<sitePluginVersion>3.12.1</sitePluginVersion>
<sourcePluginVersion>3.2.1</sourcePluginVersion>
<surefirePluginVersion>3.0.0-M7</surefirePluginVersion>
<surefirePluginVersion>3.0.0</surefirePluginVersion>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
<configuration>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<preBuildHookScript>setup</preBuildHookScript>
Expand Down
2 changes: 1 addition & 1 deletion src/it/invocation-debug/src/it/minvoker-142/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
* under the License.
*/
File buildLog = new File( basedir, 'build.log' )
assert buildLog.text.contains( '[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.AlwaysPass' )
assert buildLog.text.contains( '[INFO] Rule 0: org.apache.maven.enforcer.rules.AlwaysPass passed' )
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ File buildLog = new File( basedir, 'build.log' )
// if one of criteria matches
if( buildLog.exists() )
{
assert buildLog.text.contains( '[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.AlwaysPass' )
assert buildLog.text.contains( '[INFO] Rule 0: org.apache.maven.enforcer.rules.AlwaysPass passed' )
}

Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ File buildLog = new File( basedir, 'build.log' )
// if one of criteria matches
if( buildLog.exists() )
{
assert buildLog.text.contains( '[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.AlwaysPass' )
assert buildLog.text.contains( '[INFO] Rule 0: org.apache.maven.enforcer.rules.AlwaysPass passed' )
}

Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
* under the License.
*/
File buildLog = new File( basedir, 'build.log' )
assert buildLog.text.contains( '[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.AlwaysPass' )
assert buildLog.text.contains( '[INFO] Rule 0: org.apache.maven.enforcer.rules.AlwaysPass passed' )

0 comments on commit 3e4f3c9

Please sign in to comment.