Repository: mina-sshd Updated Branches: refs/heads/master 100463f67 -> 6a63c251f
Upgraded some dependency artifacts versions Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/6a63c251 Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/6a63c251 Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/6a63c251 Branch: refs/heads/master Commit: 6a63c251fe8f7953fba4deda4464ecf1bcf5c7cd Parents: 100463f Author: Goldstein Lyor <[email protected]> Authored: Wed Jan 24 16:44:48 2018 +0200 Committer: Goldstein Lyor <[email protected]> Committed: Thu Jan 25 07:31:07 2018 +0200 ---------------------------------------------------------------------- pom.xml | 15 +++++----- sshd-core/pom.xml | 80 +++++++++++++++++++++++++------------------------- 2 files changed, 47 insertions(+), 48 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/6a63c251/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index b33a638..1456327 100644 --- a/pom.xml +++ b/pom.xml @@ -92,7 +92,7 @@ <javac.source>${java.major.version}.${java.minor.version}</javac.source> <project.build.java.source>${javac.source}</project.build.java.source> <maven.compiler.source>${javac.source}</maven.compiler.source> - <ant.version>1.9.7</ant.version> + <ant.version>1.10.1</ant.version> <ant.build.javac.source>${javac.source}</ant.build.javac.source> <javac.target>${javac.source}</javac.target> @@ -104,19 +104,18 @@ <gmaven.plugin.version>2.0</gmaven.plugin.version> <groovy.major.version>2</groovy.major.version> <groovy.minor.version>4</groovy.minor.version> - <groovy.release.version>11</groovy.release.version> + <groovy.release.version>13</groovy.release.version> <groovy.compliance.level>2.0</groovy.compliance.level> <groovy.version>${groovy.major.version}.${groovy.minor.version}.${groovy.release.version}</groovy.version> - <bouncycastle.version>1.58</bouncycastle.version> + <bouncycastle.version>1.59</bouncycastle.version> <slf4j.version>1.7.25</slf4j.version> - <spring.version>5.0.2.RELEASE</spring.version> - <jgit.version>4.9.2.201712150930-r</jgit.version> + <spring.version>5.0.3.RELEASE</spring.version> + <jgit.version>4.10.0.201712302008-r</jgit.version> <junit.version>4.12</junit.version> <surefire.plugin.version>2.20.1</surefire.plugin.version> <!-- See https://pmd.github.io/ for available latest version --> <pmd.version>5.6.1</pmd.version> - <httpcomps.version>4.4.1</httpcomps.version> </properties> <profiles> @@ -329,7 +328,7 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> - <version>${httpcomps.version}</version> + <version>4.5.5</version> <exclusions> <exclusion> <!-- we are using jcl-over-slf4j --> <groupId>commons-logging</groupId> @@ -340,7 +339,7 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> - <version>${httpcomps.version}</version> + <version>4.4.9</version> </dependency> <dependency> <groupId>ch.ethz.ganymed</groupId> http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/6a63c251/sshd-core/pom.xml ---------------------------------------------------------------------- diff --git a/sshd-core/pom.xml b/sshd-core/pom.xml index 9580b0f..1dd243b 100644 --- a/sshd-core/pom.xml +++ b/sshd-core/pom.xml @@ -175,64 +175,64 @@ </build> <profiles> - <profile> - <id>test-jce</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> + <profile> + <id>test-jce</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <executions> - <execution> - <id>jce</id> - <goals> - <goal>test</goal> - </goals> - <configuration> - <reportsDirectory>${project.build.directory}/surefire-reports-jce</reportsDirectory> - <systemProperties> + <executions> + <execution> + <id>jce</id> + <goals> + <goal>test</goal> + </goals> + <configuration> + <reportsDirectory>${project.build.directory}/surefire-reports-jce</reportsDirectory> + <systemProperties> <org.apache.sshd.security.provider.BC.enabled>false</org.apache.sshd.security.provider.BC.enabled> <!-- deprecated --> - <org.apache.sshd.registerBouncyCastle>false</org.apache.sshd.registerBouncyCastle> - </systemProperties> - </configuration> - </execution> - </executions> + <org.apache.sshd.registerBouncyCastle>false</org.apache.sshd.registerBouncyCastle> + </systemProperties> + </configuration> + </execution> + </executions> </plugin> </plugins> </build> - </profile> - <profile> - <id>test-mina</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> + </profile> + <profile> + <id>test-mina</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <executions> - <execution> - <id>mina</id> - <goals> - <goal>test</goal> - </goals> - <configuration> - <reportsDirectory>${project.build.directory}/surefire-reports-mina</reportsDirectory> - <systemProperties> - <org.apache.sshd.common.io.IoServiceFactory>org.apache.sshd.common.io.mina.MinaServiceFactory</org.apache.sshd.common.io.IoServiceFactory> - </systemProperties> - </configuration> - </execution> - </executions> + <executions> + <execution> + <id>mina</id> + <goals> + <goal>test</goal> + </goals> + <configuration> + <reportsDirectory>${project.build.directory}/surefire-reports-mina</reportsDirectory> + <systemProperties> + <org.apache.sshd.common.io.IoServiceFactory>org.apache.sshd.common.io.mina.MinaServiceFactory</org.apache.sshd.common.io.IoServiceFactory> + </systemProperties> + </configuration> + </execution> + </executions> </plugin> </plugins> </build> - </profile> + </profile> <profile> <id>load-test</id> <build>
