You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sis.apache.org by de...@apache.org on 2012/09/09 13:46:18 UTC

svn commit: r1382465 - in /incubator/sis/trunk: pom.xml sis-app/pom.xml sis-core/pom.xml sis-metadata/pom.xml sis-webapp/pom.xml

Author: desruisseaux
Date: Sun Sep  9 11:46:17 2012
New Revision: 1382465

URL: http://svn.apache.org/viewvc?rev=1382465&view=rev
Log:
Moved the JUnit dependency to the root pom.xml, since it is used by all modules.

Modified:
    incubator/sis/trunk/pom.xml
    incubator/sis/trunk/sis-app/pom.xml
    incubator/sis/trunk/sis-core/pom.xml
    incubator/sis/trunk/sis-metadata/pom.xml
    incubator/sis/trunk/sis-webapp/pom.xml

Modified: incubator/sis/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sis/trunk/pom.xml?rev=1382465&r1=1382464&r2=1382465&view=diff
==============================================================================
--- incubator/sis/trunk/pom.xml (original)
+++ incubator/sis/trunk/pom.xml Sun Sep  9 11:46:17 2012
@@ -239,6 +239,19 @@ Apache SIS is a toolkit for describing l
 
 
 
+  <!-- ===========================================================
+           Dependencies to be inherited by all modules.
+       =========================================================== -->
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+
+
   <!-- ==============================================================
          Properties, used in dependency management and build
          configuration.

Modified: incubator/sis/trunk/sis-app/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sis/trunk/sis-app/pom.xml?rev=1382465&r1=1382464&r2=1382465&view=diff
==============================================================================
--- incubator/sis/trunk/sis-app/pom.xml (original)
+++ incubator/sis/trunk/sis-app/pom.xml Sun Sep  9 11:46:17 2012
@@ -34,14 +34,6 @@
   <name>Apache SIS app</name>
   <url>http://incubator.apache.org/sis/</url>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
   <build>
     <plugins>
       <plugin>

Modified: incubator/sis/trunk/sis-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sis/trunk/sis-core/pom.xml?rev=1382465&r1=1382464&r2=1382465&view=diff
==============================================================================
--- incubator/sis/trunk/sis-core/pom.xml (original)
+++ incubator/sis/trunk/sis-core/pom.xml Sun Sep  9 11:46:17 2012
@@ -35,11 +35,6 @@
 
   <dependencies>
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
       <groupId>org.geonames</groupId>
       <artifactId>georss-rome</artifactId>
       <version>0.9.8</version>

Modified: incubator/sis/trunk/sis-metadata/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sis/trunk/sis-metadata/pom.xml?rev=1382465&r1=1382464&r2=1382465&view=diff
==============================================================================
--- incubator/sis/trunk/sis-metadata/pom.xml (original)
+++ incubator/sis/trunk/sis-metadata/pom.xml Sun Sep  9 11:46:17 2012
@@ -104,10 +104,6 @@ Implementations of metadata derived from
       <groupId>org.opengis</groupId>
       <artifactId>geoapi-conformance</artifactId>
     </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-    </dependency>
   </dependencies>
 
 </project>

Modified: incubator/sis/trunk/sis-webapp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sis/trunk/sis-webapp/pom.xml?rev=1382465&r1=1382464&r2=1382465&view=diff
==============================================================================
--- incubator/sis/trunk/sis-webapp/pom.xml (original)
+++ incubator/sis/trunk/sis-webapp/pom.xml Sun Sep  9 11:46:17 2012
@@ -35,11 +35,6 @@
 
   <dependencies>
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
       <groupId>javax.servlet</groupId>
       <artifactId>servlet-api</artifactId>
       <version>2.4</version>