1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
From: Torsten Werner <twerner@debian.org>
Date: Sun, 28 Aug 2011 21:56:54 +0200
Subject: [PATCH] add test dependency junit
---
pom.xml | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/pom.xml b/pom.xml
index 2af083d..0d811fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,4 +17,13 @@
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.11</developerConnection>
<url>http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-interpolation-1.11</url>
</scm>
-</project>
\ No newline at end of file
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
--
|