You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by pr...@apache.org on 2007/08/01 21:02:42 UTC

svn commit: r561916 - /geronimo/server/trunk/testsuite/pom.xml

Author: prasad
Date: Wed Aug  1 12:02:40 2007
New Revision: 561916

URL: http://svn.apache.org/viewvc?view=rev&rev=561916
Log:
* openjpa dependency version
* added repository for independent builds

Modified:
    geronimo/server/trunk/testsuite/pom.xml

Modified: geronimo/server/trunk/testsuite/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/pom.xml?view=diff&rev=561916&r1=561915&r2=561916
==============================================================================
--- geronimo/server/trunk/testsuite/pom.xml (original)
+++ geronimo/server/trunk/testsuite/pom.xml Wed Aug  1 12:02:40 2007
@@ -40,6 +40,7 @@
         The test poms under the suites inherit an empty 'child' profile from here. But any other build executions within the test poms should all be inside a 'child' profile.
     </description>
     <dependencyManagement>
+        <!-- mainatain the versioning of all dependencies in this one common location here. -->
         <dependencies>
             <!-- testsupport-selenium brings with it testsupport-common, selenium and testng dependencies -->
             <dependency>
@@ -48,14 +49,22 @@
                 <version>${version}</version>
                 <scope>compile</scope>
             </dependency>
+
+            <dependency>
+                <groupId>org.apache.openjpa</groupId>
+                <artifactId>openjpa-persistence-jdbc</artifactId>
+                <version>1.0.0-SNAPSHOT</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.geronimo.testsupport</groupId>
             <artifactId>testsupport-selenium</artifactId>
         </dependency>
     </dependencies>
+
     <modules>
         <module>console-testsuite</module>
         <module>corba-testsuite</module>
@@ -63,7 +72,8 @@
         <module>enterprise-testsuite</module>
         <module>web-testsuite</module>
         <module>webservices-testsuite</module>
-  </modules>
+    </modules>
+
     <build>
         <resources>
             <resource>
@@ -71,6 +81,7 @@
                 <filtering>true</filtering>
             </resource>
         </resources>
+
         <pluginManagement>
             <plugins>
                 <plugin>
@@ -218,6 +229,7 @@
                 </plugin>
             </plugins>
         </pluginManagement>
+
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
@@ -229,6 +241,7 @@
             </plugin>
         </plugins>
     </build>
+
     <distributionManagement>
         <site>
             <id>website</id>
@@ -236,6 +249,7 @@
         </site>
     </distributionManagement>
     
+
     <reporting>
         <plugins>
             <plugin>
@@ -320,7 +334,6 @@
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>selenium-maven-plugin</artifactId>
-                        
                         <executions>
                             <execution>
                                 <id>xvfb</id>
@@ -339,4 +352,25 @@
             <id>child</id>
         </profile>
     </profiles>
+
+     <repositories>
+        <!--
+        NOTE: This is useful to run the testsuite on any machine, independent of the Geronimo build.
+        scm location svn co https://svn.apache.org/repos/asf/geronimo/server/trunk/testsuite
+        -->
+        <repository>
+            <id>apache-snapshots</id>
+            <name>Apache Snapshots Repository</name>
+            <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+            <layout>default</layout>
+            <snapshots>
+                <enabled>true</enabled>
+                <updatePolicy>daily</updatePolicy>
+                <checksumPolicy>ignore</checksumPolicy>
+            </snapshots>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+        </repository>
+     </repositories>
 </project>