summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Gansterer <paroga@paroga.com>2012-10-24 08:58:35 +0200
committerPatrick Gansterer <paroga@paroga.com>2012-10-24 08:59:57 +0200
commitc7a4683e7111124691a49bbb2c0b160a206da4e8 (patch)
treee4d1ad0020d07b3b2ca85b7958e0d526c22559cb
parent547bb9a661d58d40f9a7bfc8e6a8c00199a5e59f (diff)
Add org.apache.mina as dependency to pom.xml
gerrit-sshd depends on it, so add it to the dependencies to make Maven work in a clean environment. Change-Id: I67b60b6cd7b8706594af6e6ce10c791ef41dd61b
-rw-r--r--gerrit-sshd/pom.xml5
-rw-r--r--pom.xml6
2 files changed, 11 insertions, 0 deletions
diff --git a/gerrit-sshd/pom.xml b/gerrit-sshd/pom.xml
index 31b2422a6b..a26b1b2b85 100644
--- a/gerrit-sshd/pom.xml
+++ b/gerrit-sshd/pom.xml
@@ -44,6 +44,11 @@ limitations under the License.
</dependency>
<dependency>
+ <groupId>org.apache.mina</groupId>
+ <artifactId>mina-core</artifactId>
+ </dependency>
+
+ <dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
</dependency>
diff --git a/pom.xml b/pom.xml
index d7b59886d1..153c229e12 100644
--- a/pom.xml
+++ b/pom.xml
@@ -556,6 +556,12 @@ limitations under the License.
</dependency>
<dependency>
+ <groupId>org.apache.mina</groupId>
+ <artifactId>mina-core</artifactId>
+ <version>2.0.5</version>
+ </dependency>
+
+ <dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
<version>0.5.1-r1095809</version>