mirror of https://github.com/apache/maven.git
[MNG-5967] Dependency updates
This commit is contained in:
parent
8d91726f78
commit
37fef3d762
|
@ -134,7 +134,6 @@ under the License.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mockito</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
<artifactId>mockito-core</artifactId>
|
<artifactId>mockito-core</artifactId>
|
||||||
<version>1.9.5</version>
|
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
|
@ -80,7 +80,7 @@ under the License.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>xmlunit</groupId>
|
<groupId>xmlunit</groupId>
|
||||||
<artifactId>xmlunit</artifactId>
|
<artifactId>xmlunit</artifactId>
|
||||||
<version>1.3</version>
|
<version>1.6</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
|
@ -110,7 +110,6 @@ under the License.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mockito</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
<artifactId>mockito-core</artifactId>
|
<artifactId>mockito-core</artifactId>
|
||||||
<version>1.9.5</version>
|
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
25
pom.xml
25
pom.xml
|
@ -50,23 +50,23 @@ under the License.
|
||||||
<maven.compiler.source>1.7</maven.compiler.source>
|
<maven.compiler.source>1.7</maven.compiler.source>
|
||||||
<maven.compiler.target>1.7</maven.compiler.target>
|
<maven.compiler.target>1.7</maven.compiler.target>
|
||||||
<classWorldsVersion>2.5.2</classWorldsVersion>
|
<classWorldsVersion>2.5.2</classWorldsVersion>
|
||||||
<commonsCliVersion>1.2</commonsCliVersion>
|
<commonsCliVersion>1.3.1</commonsCliVersion>
|
||||||
<commonsLangVersion>3.4</commonsLangVersion>
|
<commonsLangVersion>3.5</commonsLangVersion>
|
||||||
<junitVersion>4.11</junitVersion>
|
<junitVersion>4.12</junitVersion>
|
||||||
|
<mockitoVersion>1.10.19</mockitoVersion>
|
||||||
<plexusVersion>1.7.1</plexusVersion>
|
<plexusVersion>1.7.1</plexusVersion>
|
||||||
<plexusInterpolationVersion>1.21</plexusInterpolationVersion>
|
<plexusInterpolationVersion>1.24</plexusInterpolationVersion>
|
||||||
<plexusUtilsVersion>3.0.22</plexusUtilsVersion>
|
<plexusUtilsVersion>3.0.24</plexusUtilsVersion>
|
||||||
<!-- Latest version of Guava that works with Sisu -->
|
<guavaVersion>20.0</guavaVersion>
|
||||||
<guavaVersion>18.0</guavaVersion>
|
|
||||||
<guiceVersion>4.0</guiceVersion>
|
<guiceVersion>4.0</guiceVersion>
|
||||||
<sisuInjectVersion>0.3.3</sisuInjectVersion>
|
<sisuInjectVersion>0.3.3</sisuInjectVersion>
|
||||||
<wagonVersion>2.12</wagonVersion>
|
<wagonVersion>2.12</wagonVersion>
|
||||||
<securityDispatcherVersion>1.3</securityDispatcherVersion>
|
<securityDispatcherVersion>1.4</securityDispatcherVersion>
|
||||||
<cipherVersion>1.7</cipherVersion>
|
<cipherVersion>1.7</cipherVersion>
|
||||||
<modelloVersion>1.8.3</modelloVersion>
|
<modelloVersion>1.8.3</modelloVersion>
|
||||||
<jxpathVersion>1.3</jxpathVersion>
|
<jxpathVersion>1.3</jxpathVersion>
|
||||||
<resolverVersion>1.0.3</resolverVersion>
|
<resolverVersion>1.0.3</resolverVersion>
|
||||||
<slf4jVersion>1.7.5</slf4jVersion>
|
<slf4jVersion>1.7.22</slf4jVersion>
|
||||||
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
|
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
|
||||||
<!-- Control the name of the distribution and information output by mvn -->
|
<!-- Control the name of the distribution and information output by mvn -->
|
||||||
<distributionId>apache-maven</distributionId>
|
<distributionId>apache-maven</distributionId>
|
||||||
|
@ -300,7 +300,7 @@ under the License.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>ch.qos.logback</groupId>
|
<groupId>ch.qos.logback</groupId>
|
||||||
<artifactId>logback-classic</artifactId>
|
<artifactId>logback-classic</artifactId>
|
||||||
<version>1.0.7</version>
|
<version>1.2.1</version>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Wagon -->
|
<!-- Wagon -->
|
||||||
|
@ -393,6 +393,11 @@ under the License.
|
||||||
<artifactId>plexus-cipher</artifactId>
|
<artifactId>plexus-cipher</artifactId>
|
||||||
<version>${cipherVersion}</version>
|
<version>${cipherVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-core</artifactId>
|
||||||
|
<version>${mockitoVersion}</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<!--bootstrap-start-comment-->
|
<!--bootstrap-start-comment-->
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
Loading…
Reference in New Issue