Repository: mina-sshd Updated Branches: refs/heads/master a02a9bf56 -> d296fd6ba
Make sure same dependency version is used throughout - including 3rd party transitive ones Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/d296fd6b Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/d296fd6b Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/d296fd6b Branch: refs/heads/master Commit: d296fd6ba49ef4804b03025ba5d0e77c13fb721e Parents: 5b2ef0a Author: Goldstein Lyor <[email protected]> Authored: Mon Aug 13 14:15:20 2018 +0300 Committer: Goldstein Lyor <[email protected]> Committed: Mon Aug 13 14:15:46 2018 +0300 ---------------------------------------------------------------------- pom.xml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/d296fd6b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 859da4f..5bac023 100644 --- a/pom.xml +++ b/pom.xml @@ -114,6 +114,8 @@ <spring.version>5.0.7.RELEASE</spring.version> <jgit.version>5.0.1.201806211838-r</jgit.version> <junit.version>4.12</junit.version> + <bytebuddy.version>1.8.15</bytebuddy.version> + <surefire.plugin.version>2.22.0</surefire.plugin.version> <!-- See https://pmd.github.io/ for available latest version --> <pmd.version>6.5.0</pmd.version> @@ -410,6 +412,23 @@ <version>1.1.3</version> </dependency> + <!-- Transitive dependencies by various 3rd party packages --> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.6</version> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.6</version> + </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.2.2</version> + </dependency> + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-framework-bom</artifactId> @@ -454,11 +473,24 @@ <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> + <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.20.0</version> </dependency> + <!-- Used by mockito --> + <dependency> + <groupId>net.bytebuddy</groupId> + <artifactId>byte-buddy</artifactId> + <version>${bytebuddy.version}</version> + </dependency> + <dependency> + <groupId>net.bytebuddy</groupId> + <artifactId>byte-buddy-agent</artifactId> + <version>${bytebuddy.version}</version> + </dependency> + <dependency> <groupId>net.sf.jpam</groupId> <artifactId>jpam</artifactId>
