Skip to content

Commit

Permalink
Clean up integration test versions
Browse files Browse the repository at this point in the history
  • Loading branch information
keeganwitt committed May 17, 2023
1 parent 9c99c76 commit 31259ae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<javaVersion>1.${shortJavaVersion}</javaVersion>
<dependencyPluginVersion>3.5.0</dependencyPluginVersion>
<compilerPluginVersion>3.11.0</compilerPluginVersion>
<resourcesPluginVersion>3.3.1</resourcesPluginVersion>
<junitVersion>4.13.2</junitVersion>
<surefirePluginVersion>3.1.0</surefirePluginVersion>
<pluginPluginVersion>3.9.0</pluginPluginVersion>
Expand Down Expand Up @@ -342,7 +343,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<version>${resourcesPluginVersion}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
12 changes: 9 additions & 3 deletions src/it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

<properties>
<project.build.sourceEncoding>@project.build.sourceEncoding@</project.build.sourceEncoding>
<commonsLang3Version>3.11</commonsLang3Version>
<mavenVersion>3.6.3</mavenVersion>
<junit5Version>5.7.0</junit5Version>
<commonsLang3Version>3.12.0</commonsLang3Version>
<mavenVersion>3.9.2</mavenVersion>
<junit5Version>5.9.3</junit5Version>
</properties>

<dependencyManagement>
Expand All @@ -35,11 +35,13 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.9.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down Expand Up @@ -169,6 +171,10 @@
<artifactId>gmavenplus-plugin</artifactId>
<version>@project.version@</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>@resourcesPluginVersion@</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>@compilerPluginVersion@</version>
Expand Down

0 comments on commit 31259ae

Please sign in to comment.