You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2007/08/05 06:15:41 UTC

svn commit: r562819 [4/4] - in /openejb/repo: ./ commons-dbcp/ commons-dbcp/commons-dbcp/ commons-dbcp/commons-dbcp/1.3-r562808/ org/ org/apache/ org/apache/axis2/ org/apache/axis2/axis2-jaxws-api/ org/apache/axis2/axis2-jaxws-api/1.3-r562247/ org/apac...

Added: openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom (added)
+++ openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom Sat Aug  4 21:15:29 2007
@@ -0,0 +1,156 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements.  See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership.  The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License.  You may obtain a copy of the License at
+ 
+ http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+ specific language governing permissions and limitations
+ under the License.   
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+        http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>openjpa</artifactId>
+    <packaging>jar</packaging>
+    <name>OpenJPA Aggregate Jar</name>
+    <parent>
+        <groupId>org.apache.openjpa</groupId>
+        <artifactId>openjpa-parent</artifactId>
+        <version>1.0.0-r561970</version>
+    </parent>
+    <properties>
+        <scm.dir>svn.apache.org/repos/asf/openjpa/trunk/openjpa-all</scm.dir>
+    </properties>
+
+    <scm>
+        <connection>scm:svn:http://${scm.dir}</connection>
+        <developerConnection>scm:svn:https://${scm.dir}</developerConnection>
+        <url>https://${scm.dir}</url>
+    </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <!--
+                    Manually build an aggregate jar of all the other
+                    openjpa-* jars using ant. We cannot use the assembly
+                    plugin, since it doesn't provide support for appending
+                    multiple same-named files to each other (which is
+                    required for correctly aggregating services files).
+                -->
+                <artifactId>maven-antrun-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>build-single-jar</id>
+                        <phase>process-classes</phase>
+                        <configuration>
+                            <tasks>
+                                <unjar overwrite="false"
+                                    dest="${basedir}/target/classes">
+                                    <fileset dir="${basedir}/..">
+                                        <include name="*/target/openjpa-*.jar"/>
+                                        <exclude name="*/target/openjpa-examples-*.jar"/>
+                                    </fileset>
+                                </unjar>
+
+                                <!--
+                                    need to manually concatinate the services 
+                                    resources so they are aggregated
+                                -->
+                                <macrodef name="aggregate-file">
+                                   <attribute name="servicename"/>
+                                    <sequential>
+                                        <echo>Building service: @{servicename}</echo>
+                                        <concat destfile="${basedir}/target/classes/META-INF/services/@{servicename}">
+                                            <fileset dir="${basedir}/.." includes="*/src/main/resources/META-INF/services/@{servicename}"/>
+                                        </concat>
+                                    </sequential>
+                                </macrodef>
+
+                                <aggregate-file servicename="org.apache.openjpa.lib.conf.ProductDerivation"/>
+                                <aggregate-file servicename="javax.persistence.spi.PersistenceProvider"/>
+                                <aggregate-file servicename="org.apache.openjpa.kernel.exps.ExpressionParser"/>
+                            </tasks>
+                        </configuration>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <!--
+                create enhancer pre-main attribute
+                copied from openjpa-kernel-5/pom.xml
+            -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestEntries>
+                            <Premain-Class>
+                                org.apache.openjpa.enhance.PCEnhancerAgent
+                            </Premain-Class>
+                            <Can-Redefine-Classes>true</Can-Redefine-Classes>
+                        </manifestEntries>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.openjpa</groupId>
+            <artifactId>openjpa-lib</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.openjpa</groupId>
+            <artifactId>openjpa-kernel</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.openjpa</groupId>
+            <artifactId>openjpa-kernel-5</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.openjpa</groupId>
+            <artifactId>openjpa-jdbc</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.openjpa</groupId>
+            <artifactId>openjpa-jdbc-5</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.openjpa</groupId>
+            <artifactId>openjpa-persistence</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.openjpa</groupId>
+            <artifactId>openjpa-persistence-jdbc</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.openjpa</groupId>
+            <artifactId>openjpa-xmlstore</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+    </dependencies>
+</project>

Added: openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom.md5
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom.md5?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom.md5 (added)
+++ openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom.md5 Sat Aug  4 21:15:29 2007
@@ -0,0 +1 @@
+146fc2ce86be220786f3acde04062dc5
\ No newline at end of file

Added: openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom.sha1
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom.sha1?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom.sha1 (added)
+++ openejb/repo/org/apache/openjpa/openjpa/1.0.0-r561970/openjpa-1.0.0-r561970.pom.sha1 Sat Aug  4 21:15:29 2007
@@ -0,0 +1 @@
+60c0462c6fc282ad005a56874ed5abb673aa0cc4
\ No newline at end of file

Added: openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml (added)
+++ openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml Sat Aug  4 21:15:29 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.apache.openjpa</groupId>
+  <artifactId>openjpa</artifactId>
+  <version>1.0.0-r561970</version>
+  <versioning>
+    <versions>
+      <version>1.0.0-r561970</version>
+    </versions>
+    <lastUpdated>20070805030715</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml.md5
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml.md5?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml.md5 (added)
+++ openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml.md5 Sat Aug  4 21:15:29 2007
@@ -0,0 +1 @@
+b0ea65df20b1ebfcf174dfa20ee10ad9
\ No newline at end of file

Added: openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml.sha1
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml.sha1?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml.sha1 (added)
+++ openejb/repo/org/apache/openjpa/openjpa/maven-metadata.xml.sha1 Sat Aug  4 21:15:29 2007
@@ -0,0 +1 @@
+532e83f8face11c79ea8ceed238077cfb529aa4a
\ No newline at end of file

Added: openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom (added)
+++ openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom Sat Aug  4 21:15:29 2007
@@ -0,0 +1,311 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements.  See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership.  The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License.  You may obtain a copy of the License at
+ 
+ http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+ specific language governing permissions and limitations
+ under the License.   
+-->
+
+<!--
+    This build file is used to run the JPA TCK. It assumes that you have
+    the TCK zip file located at:
+
+        ${user.home}/.m2/privaterepos/jpa-1_0b-tck.zip
+
+    If you have that file in a different location, it can be specified with
+    the "tck.zip" system property.
+
+    The TCK will only be run if you have the "tck-profile" enabled.
+
+    To run a specific package of tests, use the "jpatck.pkg.dir" system
+    property to specify the parent directory of the tests you want to run.
+    E.g.:
+
+        mvn integration-test -Ptck-profile -Djpatck.pkg.dir=com/sun/ts/tests/ejb30/persistence/inheritance/mappedsc/descriptors
+
+    The TCK running process will do the following:
+
+    1. Fine the TCK zip file and extract it
+    2. Create an openjpa-provier.properties file with the OpenJPA config
+    3. Modify the TCK's main configuration file (ts.jte) to use OpenJPA
+    4. Run the database initialization script
+    5. Run the TCK script
+    6. Parse the TCK result log to determine whether to fail the build or not
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+        http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>tck</artifactId>
+    <packaging>pom</packaging>
+    <name>OpenJPA JPA TCK Integration Tests</name>
+    <parent>
+        <groupId>org.apache.openjpa</groupId>
+        <artifactId>openjpa-integration</artifactId>
+        <version>1.0.0-r561970</version>
+    </parent>
+
+    <profiles>
+    <profile>
+    <id>tck-profile</id>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>run-tck</id>
+                        <phase>integration-test</phase>
+                        <configuration>
+                        <tasks>
+                        <echo>Running Sun JPA TCK</echo>
+
+                        <property name="tck.zip" value=
+                            "${settings.localRepository}/../privaterepos/jpa-1_0b-tck.zip"/>
+                         <available property="tck.available" file="${tck.zip}"/>
+                        <fail unless="tck.available">The TCK file ${tck.zip} does not exist. This file must be downloaded separately in order to be able to run the JPA TCK</fail>
+
+
+                        <available property="tck.available" file="${tck.zip}"/>
+                        <fail unless="tck.available">The TCK file specific in the "tck.zip" system property (${tck.zip}) does not exist. This file must be downloaded separately in order to be able to run the JPA TCK</fail>
+
+                        <property name="tck.base"
+                            value="${basedir}/target/tck"/>
+                        <property name="tck.dir" value="${tck.base}/jpatck"/>
+
+                        <delete dir="${tck.dir}"/>
+
+                        <unzip overwrite="false"
+                            src="${tck.zip}" dest="${tck.base}"/>
+
+                        <path id="cp">
+                            <path refid="maven.compile.classpath"/>
+
+                            <!-- use official JPA API instead of GM's -->
+                            <fileset dir="${tck.dir}/lib">
+                                <include name="**/*.jar"/>
+                                <exclude name="**/geronimo-jpa*"/>
+                            </fileset>
+                            <pathelement path="${java.class.path}"/>
+                        </path>
+                        <pathconvert property="cp.property" refid="cp"/>
+
+                        <property name="db.driver"
+                            value="org.apache.derby.jdbc.EmbeddedDriver"/>
+                        <property name="db.url"
+                            value="jdbc:derby:derby-database;create=true"/>
+                        <property name="db.username" value="nousername"/>
+                        <property name="db.password" value="nopassword"/>
+
+                        <property name="jpatck.pkg.dir" value="com"/>
+
+                        <property name="jpatck.work.dir"
+                            value="${tck.dir}/../work"/>
+                        <property name="tck.log"
+                            value="${tck.base}/openjpa-tck.log"/>
+
+                        <property name="openjpa.properties"
+                            value="${tck.dir}/openjpa-provier.properties"/>
+
+                        <!-- create the OpenJPA properties for the TCK run -->
+                        <echo append="false" file="${openjpa.properties}">
+javax.persistence.provider: org.apache.openjpa.persistence.PersistenceProviderImpl
+openjpa.ConnectionDriverName: ${db.driver}
+openjpa.ConnectionURL: ${db.url}
+openjpa.ConnectionUserName: ${db.username}
+openjpa.ConnectionPassword: ${db.password}
+openjpa.FetchBatchSize: -1
+openjpa.Compatibility: StrictIdentityValues=true
+openjpa.Sequence: time
+openjpa.Log: DefaultLevel=WARN
+openjpa.jdbc.DBDictionary: StoreCharsAsNumbers=false
+openjpa.jdbc.SchemaFactory: native(ForeignKeys=true)
+                        </echo>
+
+                        <!-- Append OpenJPA-specific configuration -->
+                        <property name="jpatck.config"
+                            value="${tck.dir}/bin/ts.jte"/>
+
+                        <echo append="false" file="${jpatck.config}.tmp">
+
+
+#########################################################################
+## OpenJPA specific properties follow
+#########################################################################
+
+jpa.home=${tck.dir}
+work.dir=${jpatck.work.dir}
+report.dir=${tck.dir}/../reports
+jpa.classes=${cp.property}
+database.classes=${jpa.classes}
+# Need to specify java.* classes, both in Windows/UNIX locations as well as Mac.
+# This includes a few different possible locations; only one of them needs to 
+# actually work for a given environment.
+sigTestClasspath=${JAVA_HOME}/lib/rt.jar${path.separator}${JAVA_HOME}/jre/lib/rt.jar${path.separator}${JAVA_HOME}/../Classes/classes.jar${path.separator}$${jpa.classes}
+persistence.unit.properties.file.full.path=${openjpa.properties}
+database.user=${db.username}
+database.passwd=${db.password}
+database.url=${db.url}
+database.driver=${db.driver}
+
+                        </echo>
+
+                        <!-- convert backslashes and known paths with spaces
+                            to get around a problem with the TCK testrunner 
+                            on windows -->
+                        <replace summary="yes" file="${jpatck.config}.tmp" 
+                            replacefilterfile="windows-replacefilter.properties"/>
+                        <concat append="true" destfile="${jpatck.config}">
+                            <fileset file="${jpatck.config}.tmp"/>
+                        </concat>
+
+                        <path id="agent.path">
+                            <fileset dir="../../openjpa-all/target">
+                                <include name="**/*.jar"/>
+                            </fileset>
+                        </path>
+                        <pathconvert dirsep="/" property="agent" 
+                            refid="agent.path"/>
+                        <property name="agent.properties" value=""/>
+                        <echo>AGENT: ${agent}${agent.properties}</echo>
+
+                        <!--
+                            Replace the existing javaagent argument (which
+                            uses Toplink's enhancer) with our own. Also, we
+                            need to specify the default MetaDataFactory in
+                            order to allow tests that don't have any
+                            persistent classes to work (like the SignatureTest)
+                        -->
+                        <replace file="${jpatck.config}">
+                            <replacefilter token="-javaagent:${jpa.home}/lib/toplink-essentials-agent.jar" value="-javaagent:${agent}${agent.properties} -Dopenjpa.MetaDataFactory=jpa(DefaultAccessType=PROPERTY)"/>
+                        </replace>
+
+                        <!-- make a macro for the TCK harness launcher -->
+                        <macrodef name="tsant">
+                            <attribute name="buildfile"/>
+                            <attribute name="target"/>
+                            <sequential>
+                                <java classname=
+                                    "org.apache.tools.ant.launch.Launcher"
+                                    fork="true" failonerror="true"
+                                    dir="${tck.dir}/src"
+                                    append="true"
+                                    output="${tck.log}"
+                                    timeout="7200000">
+                                    <arg value="-emacs"/>
+                                    <arg value="-buildfile"/>
+                                    <arg value="@{buildfile}"/>
+                                    <arg value="-listener"/>
+                                    <arg value="com.sun.ant.TSBuildListener"/>
+                                    <arg value="-logger"/>
+                                    <arg value="com.sun.ant.TSLogger"/>
+                                    <arg value="@{target}"/>
+
+                                    <env key="TS_HOME" value=".."/>
+                                    <sysproperty key="ts.home" value=".."/>
+
+                                    <env key="ANT_HOME"
+                                        value="${tck.dir}/tools/ant"/>
+                                    <sysproperty key="ant.home"
+                                        value="${tck.dir}/tools/ant"/>
+
+                                    <sysproperty key="pkg.dir"
+                                        value="${jpatck.pkg.dir}"/>
+
+                                    <classpath>
+                                        <path refid="cp"/>
+                                        <fileset dir="${tck.dir}/tools/ant/lib">
+                                            <include name="**/*.jar"/>
+                                        </fileset>
+                                    </classpath>
+                                </java>
+                            </sequential>
+                        </macrodef>
+
+                        <echo>Logging JPA TCK output to ${tck.log}</echo>
+
+                        <!-- first initialize the database -->
+                        <tsant buildfile="${tck.dir}/bin/initdb.xml"
+                            target="init.database"/>
+
+                        <!-- now run the TCK -->
+                        <tsant buildfile="${tck.dir}/bin/build.xml"
+                            target="runclient"/>
+
+                        <!--
+                            The TCK's Java process doesn't actually fail when
+                            tests fail, so we need to parse the results file
+                            for a string indicating whether or not it passed.
+                        -->
+                        <loadfile property="jpatck.results"
+                            srcfile="${jpatck.work.dir}/jtData/log.txt"/>
+                        <condition property="jpatck.failed">
+                            <contains string="${jpatck.results}"
+                                substring="Completed test run: not ok"/>
+                        </condition>
+                        <fail if="jpatck.failed">Some tests failed</fail>
+
+                        <echo>JPA TCK Passed 100%!</echo>
+
+                        <property name="tck.results.archive"
+                            value="${tck.base}/openjpa-tck-results.zip"/>
+                        <zip destfile="${tck.results.archive}"
+                            basedir="${jpatck.work.dir}"/>
+                        <echo>Results archive at: ${tck.results.archive}</echo>
+
+                        </tasks>
+                        </configuration>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    </profile>
+    </profiles>
+
+    <repositories>
+        <repository>
+            <id>java.net</id>
+            <name>Java.net Maven Repository</name>
+            <url>https://maven-repository.dev.java.net/nonav/repository</url>
+            <layout>legacy</layout>
+        </repository>
+    </repositories>
+
+    <dependencies>
+        <!-- use the authoritative javax.persistence API for testing -->
+        <dependency>
+            <groupId>javax.persistence</groupId>
+            <artifactId>persistence-api</artifactId>
+            <version>1.0b</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.openjpa</groupId>
+            <artifactId>openjpa-kernel</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.derby</groupId>
+            <artifactId>derby</artifactId>
+            <version>10.2.1.6</version>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+</project>
+

Added: openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom.md5
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom.md5?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom.md5 (added)
+++ openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom.md5 Sat Aug  4 21:15:29 2007
@@ -0,0 +1 @@
+39f316cca786f974f7579a7549c98971
\ No newline at end of file

Added: openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom.sha1
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom.sha1?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom.sha1 (added)
+++ openejb/repo/org/apache/openjpa/tck/1.0.0-r561970/tck-1.0.0-r561970.pom.sha1 Sat Aug  4 21:15:29 2007
@@ -0,0 +1 @@
+131789ae820c829e9d47ba6a7ff47704d44a24e6
\ No newline at end of file

Added: openejb/repo/org/apache/openjpa/tck/maven-metadata.xml
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/tck/maven-metadata.xml?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/tck/maven-metadata.xml (added)
+++ openejb/repo/org/apache/openjpa/tck/maven-metadata.xml Sat Aug  4 21:15:29 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.apache.openjpa</groupId>
+  <artifactId>tck</artifactId>
+  <version>1.0.0-r561970</version>
+  <versioning>
+    <versions>
+      <version>1.0.0-r561970</version>
+    </versions>
+    <lastUpdated>20070805030725</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: openejb/repo/org/apache/openjpa/tck/maven-metadata.xml.md5
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/tck/maven-metadata.xml.md5?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/tck/maven-metadata.xml.md5 (added)
+++ openejb/repo/org/apache/openjpa/tck/maven-metadata.xml.md5 Sat Aug  4 21:15:29 2007
@@ -0,0 +1 @@
+67b7eb819d992e664868db767c2468b9
\ No newline at end of file

Added: openejb/repo/org/apache/openjpa/tck/maven-metadata.xml.sha1
URL: http://svn.apache.org/viewvc/openejb/repo/org/apache/openjpa/tck/maven-metadata.xml.sha1?view=auto&rev=562819
==============================================================================
--- openejb/repo/org/apache/openjpa/tck/maven-metadata.xml.sha1 (added)
+++ openejb/repo/org/apache/openjpa/tck/maven-metadata.xml.sha1 Sat Aug  4 21:15:29 2007
@@ -0,0 +1 @@
+19d0c54aacbb24ea3aa5f8641b4f4630d98da2f9
\ No newline at end of file