You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by mc...@apache.org on 2010/11/26 04:57:01 UTC

svn commit: r1039247 - /db/jdo/trunk/tck/pom.xml

Author: mcaisse
Date: Fri Nov 26 03:57:01 2010
New Revision: 1039247

URL: http://svn.apache.org/viewvc?rev=1039247&view=rev
Log:
JDO-647 Update pom.xml so that maven 2 builds use exectck plugin

Modified:
    db/jdo/trunk/tck/pom.xml

Modified: db/jdo/trunk/tck/pom.xml
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck/pom.xml?rev=1039247&r1=1039246&r2=1039247&view=diff
==============================================================================
--- db/jdo/trunk/tck/pom.xml (original)
+++ db/jdo/trunk/tck/pom.xml Fri Nov 26 03:57:01 2010
@@ -1,184 +1,260 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.jdo</groupId>
-  <artifactId>jdo-tck</artifactId>
-  <version>3.0</version>
-  <name>JDO 3 Technology Compatibility Kit</name>
-  <description>The Java Data Objects (JDO) API is a standard interface-based Java model abstraction of persistence, developed as Java Specification Request JSR 243 under the auspices of the Java Community Process.
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.jdo</groupId>
+    <artifactId>jdo-tck</artifactId>
+    <version>3.1-SNAPSHOT</version>
+    <name>JDO 3 Technology Compatibility Kit</name>
+    <description>The Java Data Objects (JDO) API is a standard interface-based Java model abstraction of persistence, developed as Java Specification Request JSR 243 under the auspices of the Java Community Process.
 
-The JDO TCK is a test suite designed to test implementations of the Java Data Objects specification. In order to claim compatibility with JDO, an implementation must pass all relevant tests of the JDOTCK.
+        The JDO TCK is a test suite designed to test implementations of the Java Data Objects specification. In order to claim compatibility with JDO, an implementation must pass all relevant tests of the JDOTCK.
 
-NOTE!! There are no unit tests in this project.</description>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <resources>
-      <resource>
-        <targetPath>META-INF</targetPath>
-        <directory>${basedir}/..</directory>
-        <includes>
-          <include>NOTICE.txt</include>
-        </includes>
-      </resource>
-      <resource>
-        <directory>${basedir}/src/conf</directory>
-      </resource>
-      <resource>
-        <directory>${basedir}/src/jdo</directory>
-      </resource>
-      <resource>
-        <directory>${basedir}/src/orm</directory>
-      </resource>
-      <resource>
-        <directory>${basedir}/src/sql</directory>
-      </resource>
-      <resource>
-        <directory>${basedir}/src/testdata</directory>
-      </resource>
-    </resources>
-    <plugins>
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.5</source>
-          <target>1.5</target>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-jar-plugin</artifactId>
-        <configuration>
-          <archive>
-            <manifestFile>${basedir}/../JDO3.MF</manifestFile>
-          </archive>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <doctitle>${pom.name} ${pom.currentVersion}</doctitle>
-          <windowtitle>${pom.name} ${pom.currentVersion}</windowtitle>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  <dependencies>
-    <dependency>
-      <groupId>javax.jdo</groupId>
-      <artifactId>jdo-api</artifactId>
-      <version>3.0</version>
-    </dependency>
-    <dependency>
-      <groupId>org.datanucleus</groupId>
-      <artifactId>datanucleus-core</artifactId>
-      <version>2.1.0-release</version>
-    </dependency>
-    <dependency>
-      <groupId>org.datanucleus</groupId>
-      <artifactId>datanucleus-rdbms</artifactId>
-      <version>2.1.0-release</version>
-    </dependency>
-    <dependency>
-      <groupId>org.datanucleus</groupId>
-      <artifactId>datanucleus-enhancer</artifactId>
-      <version>2.1.0-release</version>
-    </dependency>
-    <dependency>
-      <groupId>org.datanucleus</groupId>
-      <artifactId>datanucleus-jpa</artifactId>
-      <version>2.1.0-release</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.derby</groupId>
-      <artifactId>derby</artifactId>
-      <version>10.4.2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.derby</groupId>
-      <artifactId>derbytools</artifactId>
-      <version>10.4.2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-    </dependency>
-    <dependency>
-      <groupId>asm</groupId>
-      <artifactId>asm</artifactId>
-      <version>3.0</version>
-    </dependency>
-    <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>log4j</artifactId>
-      <version>1.2.13</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-logging</groupId>
-      <artifactId>commons-logging</artifactId>
-      <version>1.1</version>
-    </dependency>
-    <dependency>
-      <groupId>javax.transaction</groupId>
-      <artifactId>transaction-api</artifactId>
-      <version>1.1</version>
-    </dependency>
-    <dependency>
-      <groupId>org.springframework</groupId>
-      <artifactId>spring-core</artifactId>
-      <version>2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>org.springframework</groupId>
-      <artifactId>spring-beans</artifactId>
-      <version>2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>org.datanucleus</groupId>
-      <artifactId>datanucleus-connectionpool</artifactId>
-      <version>2.0.1</version>
-    </dependency>
-    <dependency>
-      <groupId>c3p0</groupId>
-      <artifactId>c3p0</artifactId>
-      <version>0.9.0.2</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-dbcp</groupId>
-      <artifactId>commons-dbcp</artifactId>
-      <version>1.2.1</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-pool</groupId>
-      <artifactId>commons-pool</artifactId>
-      <version>1.3</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-collections</groupId>
-      <artifactId>commons-collections</artifactId>
-      <version>3.2</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.geronimo.specs</groupId>
-      <artifactId>geronimo-jpa_2.0_spec</artifactId>
-      <version>1.0</version>
-    </dependency>
-  </dependencies>
-  <reporting>
-    <plugins>
-      <plugin>
-        <artifactId>maven-changes-plugin</artifactId>
-        <configuration>
-          <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-checkstyle-plugin</artifactId>
-        <configuration>
-          <configLocation>${basedir}/../jdo_checks.xml</configLocation>
-          <headerLocation>${basedir}/../LICENSE.txt</headerLocation>
-        </configuration>
-      </plugin>
-    </plugins>
-  </reporting>
+    NOTE!! There are no unit tests in this project.</description>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <resources>
+            <resource>
+                <targetPath>META-INF</targetPath>
+                <directory>${basedir}/..</directory>
+                <includes>
+                    <include>NOTICE.txt</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>${basedir}/src/conf</directory>
+            </resource>
+            <resource>
+                <directory>${basedir}/src/jdo</directory>
+            </resource>
+            <resource>
+                <directory>${basedir}/src/orm</directory>
+            </resource>
+            <resource>
+                <directory>${basedir}/src/sql</directory>
+            </resource>
+            <resource>
+                <directory>${basedir}/src/testdata</directory>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.jdo</groupId>
+                <artifactId>jdo-exectck</artifactId>
+                <version>1.0-SNAPSHOT</version>
+                <executions>
+                    <execution>
+                        <phase>integration-test</phase>
+                        <goals>
+                            <goal>help</goal>
+                            <goal>installSchema</goal>
+                            <goal>enhance</goal>
+                            <goal>runtck</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <doInstallSchema>true</doInstallSchema>
+                    <doEnhance>true</doEnhance>
+                    <doRunTCK>true</doRunTCK>
+                    <impl>jdori</impl>
+                    <pmfProperties>jdori-pmf.properties</pmfProperties>
+                    <verbose>true</verbose>
+                    <runtckVerbose>false</runtckVerbose>
+                    <debugTck>false</debugTck>
+                    <cleanupaftertest>true</cleanupaftertest>
+                    <identitytypes>applicationidentity datastoreidentity</identitytypes>
+                    <dbproperties>-Dderby.system.home=${basedir}/target/database/derby</dbproperties>
+                    <signaturefile>${basedir}/src/conf/jdo-3_1-signatures.txt</signaturefile>
+                    <cfgs>
+                        <cfg>runonce.conf</cfg>
+                        <cfg>instancecallbacks.conf</cfg>
+                        <cfg>jdohelper.conf</cfg>
+                        <cfg>pm.conf</cfg>
+                        <cfg>pmf.conf</cfg>
+                        <cfg>detach.conf</cfg>
+                        <cfg>enhancement.conf</cfg>
+                        <cfg>extents.conf</cfg>
+                        <cfg>fetchplan.conf</cfg>
+                        <cfg>fetchgroup.conf</cfg>
+                        <cfg>lifecycle.conf</cfg>
+                        <cfg>models.conf</cfg>
+                        <cfg>models1.conf</cfg>
+                        <cfg>query.conf</cfg>
+                        <cfg>jdoql.conf</cfg>
+                        <cfg>transactions.conf</cfg>
+                        <cfg>companyNoRelationships.conf</cfg>
+                        <cfg>companyEmbedded.conf</cfg>
+                        <cfg>company1-1Relationships.conf</cfg>
+                        <cfg>company1-MRelationships.conf</cfg>
+                        <cfg>companyM-MRelationships.conf</cfg>
+                        <cfg>companyAllRelationships.conf</cfg>
+                        <cfg>companyMapWithoutJoin.conf</cfg>
+                        <cfg>companyListWithoutJoin.conf</cfg>
+                        <cfg>companyPMClass.conf</cfg>
+                        <cfg>companyPMInterface.conf</cfg>
+                        <cfg>companyAnnotated1-1RelationshipsFCPM.conf</cfg>
+                        <cfg>companyAnnotated1-MRelationshipsFCPM.conf</cfg>
+                        <cfg>companyAnnotatedAllRelationshipsFCConcrete.conf</cfg>
+                        <cfg>companyAnnotatedAllRelationshipsFCPM.conf</cfg>
+                        <cfg>companyAnnotatedAllRelationshipsPCConcrete.conf</cfg>
+                        <cfg>companyAnnotatedAllRelationshipsJPAConcrete.conf</cfg>
+                        <cfg>companyAnnotatedAllRelationshipsJPAPM.conf</cfg>
+                        <cfg>companyAnnotatedAllRelationshipsPCPM.conf</cfg>
+                        <cfg>companyAnnotatedAllRelationshipsPIPM.conf</cfg>
+                        <cfg>companyAnnotatedEmbeddedFCPM.conf</cfg>
+                        <cfg>companyAnnotatedM-MRelationshipsFCConcrete.conf</cfg>
+                        <cfg>companyAnnotatedM-MRelationshipsFCPM.conf</cfg>
+                        <cfg>companyAnnotatedNoRelationshipsFCConcrete.conf</cfg>
+                        <cfg>companyAnnotatedNoRelationshipsFCPM.conf</cfg>
+                        <cfg>companyAnnotatedNoRelationshipsPCConcrete.conf</cfg>
+                        <cfg>companyAnnotatedEmbeddedJPAConcrete.conf</cfg>
+                        <cfg>companyAnnotatedEmbeddedJPAPM.conf</cfg>
+                        <cfg>companyAnnotatedNoRelationshipsPCPM.conf</cfg>
+                    </cfgs>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestFile>${basedir}/../JDO3.MF</manifestFile>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <doctitle>${pom.name} ${pom.currentVersion}</doctitle>
+                    <windowtitle>${pom.name} ${pom.currentVersion}</windowtitle>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>javax.jdo</groupId>
+            <artifactId>jdo-api</artifactId>
+            <version>3.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.datanucleus</groupId>
+            <artifactId>datanucleus-core</artifactId>
+            <version>2.1.0-release</version>
+        </dependency>
+        <dependency>
+            <groupId>org.datanucleus</groupId>
+            <artifactId>datanucleus-rdbms</artifactId>
+            <version>2.1.0-release</version>
+        </dependency>
+        <dependency>
+            <groupId>org.datanucleus</groupId>
+            <artifactId>datanucleus-enhancer</artifactId>
+            <version>2.1.0-release</version>
+        </dependency>
+        <dependency>
+            <groupId>org.datanucleus</groupId>
+            <artifactId>datanucleus-jpa</artifactId>
+            <version>2.1.0-release</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.derby</groupId>
+            <artifactId>derby</artifactId>
+            <version>10.6.1.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.derby</groupId>
+            <artifactId>derbytools</artifactId>
+            <version>10.6.1.0</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+        </dependency>
+        <dependency>
+            <groupId>asm</groupId>
+            <artifactId>asm</artifactId>
+            <version>3.0</version>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.13</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.transaction</groupId>
+            <artifactId>transaction-api</artifactId>
+            <version>1.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+            <version>2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+            <version>2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.datanucleus</groupId>
+            <artifactId>datanucleus-connectionpool</artifactId>
+            <version>2.0.1</version>
+        </dependency>
+        <dependency>
+            <groupId>c3p0</groupId>
+            <artifactId>c3p0</artifactId>
+            <version>0.9.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-dbcp</groupId>
+            <artifactId>commons-dbcp</artifactId>
+            <version>1.2.1</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-pool</groupId>
+            <artifactId>commons-pool</artifactId>
+            <version>1.3</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>3.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-jpa_2.0_spec</artifactId>
+            <version>1.0</version>
+        </dependency>
+    </dependencies>
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-changes-plugin</artifactId>
+                <configuration>
+                    <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <configuration>
+                    <configLocation>${basedir}/../jdo_checks.xml</configLocation>
+                    <headerLocation>${basedir}/../LICENSE.txt</headerLocation>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
 </project>