Skip to content

Commit

Permalink
cleanup versions a little
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Coles committed Jun 22, 2022
1 parent 2f11641 commit 161d2f7
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 24 deletions.
4 changes: 4 additions & 0 deletions pitest-ant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
<url>http://pitest.org</url>
<description>Pitest Ant task.</description>

<properties>
<ant.version>1.9.4</ant.version>
</properties>

<dependencies>
<dependency>
<groupId>org.pitest</groupId>
Expand Down
4 changes: 4 additions & 0 deletions pitest-maven-verification/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
<description>Pitest Maven Mojo integration tests.</description>
<url>http://pitest.org</url>

<properties>
<maven.version>2.2.1</maven.version>
</properties>

<build>
<plugins>
<plugin>
Expand Down
12 changes: 7 additions & 5 deletions pitest-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
<description>Pitest Maven Mojo.</description>
<url>http://pitest.org</url>

<properties>
<scm.version>1.9.4</scm.version>
<surefire.version>3.0.0-M7</surefire.version>
</properties>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -166,7 +171,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-toolchain</artifactId>
<version>${maven.version}</version>
<version>2.2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -208,10 +213,7 @@

</dependencies>

<properties>
<scm.version>1.9.4</scm.version>
<surefire.version>3.0.0-M7</surefire.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down
37 changes: 18 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,24 @@
<tag>HEAD</tag>
</scm>

<!-- versions of libraries which are used in different projects or which
are used for few artifacts -->
<properties>
<!-- this revision number used only for local builds -->
<revision>1.0.0-SNAPSHOT</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<asm.version>9.3</asm.version>
<hamcrest.version>1.3</hamcrest.version>
<junit.version>4.11</junit.version>
<surefire.version>2.18.1</surefire.version> <!-- [2.19, 3.0.0-M7] seem to cause ASM-related test failures -->
<slf4j.version>1.7.12</slf4j.version>

<maven.failsafe-plugin.version>${surefire.version}</maven.failsafe-plugin.version>
<maven.surefire-plugin.version>${surefire.version}</maven.surefire-plugin.version>
</properties>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
Expand Down Expand Up @@ -389,25 +407,6 @@
</repository>
</distributionManagement>

<!-- versions of libraries which are used in different projects or which
are used for few artifacts -->
<properties>
<!-- this revision number used only for local builds -->
<revision>1.0.0-SNAPSHOT</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<asm.version>9.3</asm.version>
<ant.version>1.9.4</ant.version>
<hamcrest.version>1.3</hamcrest.version>
<junit.version>4.11</junit.version>
<maven.version>2.2.1</maven.version>
<powermock.version>1.7.3</powermock.version>
<surefire.version>2.18.1</surefire.version> <!-- [2.19, 3.0.0-M7] seem to cause ASM-related test failures -->
<slf4j.version>1.7.12</slf4j.version>

<maven.failsafe-plugin.version>${surefire.version}</maven.failsafe-plugin.version>
<maven.surefire-plugin.version>${surefire.version}</maven.surefire-plugin.version>
</properties>

</project>

0 comments on commit 161d2f7

Please sign in to comment.