Return-Path: Delivered-To: apmail-openjpa-commits-archive@www.apache.org Received: (qmail 86991 invoked from network); 8 Apr 2011 01:59:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Apr 2011 01:59:30 -0000 Received: (qmail 57094 invoked by uid 500); 8 Apr 2011 01:59:30 -0000 Delivered-To: apmail-openjpa-commits-archive@openjpa.apache.org Received: (qmail 57039 invoked by uid 500); 8 Apr 2011 01:59:30 -0000 Mailing-List: contact commits-help@openjpa.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openjpa.apache.org Delivered-To: mailing list commits@openjpa.apache.org Received: (qmail 57032 invoked by uid 99); 8 Apr 2011 01:59:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Apr 2011 01:59:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Apr 2011 01:59:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4FFBB2388A9B; Fri, 8 Apr 2011 01:59:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1090086 [3/3] - in /openjpa/trunk: ./ openjpa-tools/ openjpa-tools/openjpa-maven-plugin/ openjpa-tools/openjpa-maven-plugin/src/ openjpa-tools/openjpa-maven-plugin/src/it/ openjpa-tools/openjpa-maven-plugin/src/it/default_settings/ openjpa... Date: Fri, 08 Apr 2011 01:59:07 -0000 To: commits@openjpa.apache.org From: mikedd@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110408015908.4FFBB2388A9B@eris.apache.org> Added: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/java/org/apache/openjpa/tools/maven/testentity/TestEntity.java URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/java/org/apache/openjpa/tools/maven/testentity/TestEntity.java?rev=1090086&view=auto ============================================================================== --- openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/java/org/apache/openjpa/tools/maven/testentity/TestEntity.java (added) +++ openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/java/org/apache/openjpa/tools/maven/testentity/TestEntity.java Fri Apr 8 01:59:02 2011 @@ -0,0 +1,60 @@ +/* + * 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. + */ +package org.apache.openjpa.tools.maven.testentity; + +import javax.persistence.Entity; +import javax.persistence.Id; + +@Entity +public class TestEntity { + + @Id + private int xint1; + + private String string1; + + public TestEntity() { + } + + public TestEntity(int int1, String string1) { + this.xint1 = int1; + this.string1 = string1; + } + + public int getInt1() { + return xint1; + } + + public void setInt1(int int1) { + this.xint1 = int1; + } + + public String getString1() { + return string1; + } + + public void setString1(String string1) { + this.string1 = string1; + } + + public String toString() { + return xint1 + ":" + string1; + } + +} Propchange: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/java/org/apache/openjpa/tools/maven/testentity/TestEntity.java ------------------------------------------------------------------------------ svn:eol-style = native Added: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/META-INF/persistence.xml URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/META-INF/persistence.xml?rev=1090086&view=auto ============================================================================== --- openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/META-INF/persistence.xml (added) +++ openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/META-INF/persistence.xml Fri Apr 8 01:59:02 2011 @@ -0,0 +1,41 @@ + + + + + + + + org.apache.openjpa.tools.maven.testentity.TestEntity + + + + + + + + + + + + + + + Propchange: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/META-INF/persistence.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/plugin-config.xml URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/plugin-config.xml?rev=1090086&view=auto ============================================================================== --- openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/plugin-config.xml (added) +++ openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/plugin-config.xml Fri Apr 8 01:59:02 2011 @@ -0,0 +1,30 @@ + + + + + + + openjpa-maven-plugin + + + + + + Propchange: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/plugin-config.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/openjpa.xml URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/openjpa.xml?rev=1090086&view=auto ============================================================================== --- openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/openjpa.xml (added) +++ openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/openjpa.xml Fri Apr 8 01:59:02 2011 @@ -0,0 +1,40 @@ + + + + + + org.apache.openjpa.persistence.PersistenceProviderImpl + + + org.apache.openjpa.tools.maven.testentity.Person + + + + + + + + + + + Propchange: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/openjpa.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/orm.xml URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/orm.xml?rev=1090086&view=auto ============================================================================== --- openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/orm.xml (added) +++ openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/orm.xml Fri Apr 8 01:59:02 2011 @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + Propchange: openjpa/trunk/openjpa-tools/openjpa-maven-plugin/src/test/resources/projects/project-01/src/main/resources/META-INF/orm.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: openjpa/trunk/openjpa-tools/pom.xml URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-tools/pom.xml?rev=1090086&view=auto ============================================================================== --- openjpa/trunk/openjpa-tools/pom.xml (added) +++ openjpa/trunk/openjpa-tools/pom.xml Fri Apr 8 01:59:02 2011 @@ -0,0 +1,46 @@ + + + + + + 4.0.0 + + + org.apache.openjpa + openjpa-parent + 2.2.0-SNAPSHOT + + + + openjpa-tools + pom + + OpenJPA tools + + + ${project.basedir}/../../openjpa-project/checkstyle.xml + + + + openjpa-maven-plugin + + Propchange: openjpa/trunk/openjpa-tools/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: openjpa/trunk/pom.xml URL: http://svn.apache.org/viewvc/openjpa/trunk/pom.xml?rev=1090086&r1=1090085&r2=1090086&view=diff ============================================================================== --- openjpa/trunk/pom.xml (original) +++ openjpa/trunk/pom.xml Fri Apr 8 01:59:02 2011 @@ -159,6 +159,7 @@ openjpa-examplesopenjpa-integrationopenjpa-all + openjpa-tools