You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2009/02/21 16:22:20 UTC

svn commit: r746527 - in /webservices/juddi/branches/v3_trunk: juddi-core/pom.xml pom.xml

Author: kstam
Date: Sat Feb 21 15:22:18 2009
New Revision: 746527

URL: http://svn.apache.org/viewvc?rev=746527&view=rev
Log:
JUDDI-195, moving the hibernate and openjpa profiles to the juddi-core pom.

Modified:
    webservices/juddi/branches/v3_trunk/juddi-core/pom.xml
    webservices/juddi/branches/v3_trunk/pom.xml

Modified: webservices/juddi/branches/v3_trunk/juddi-core/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-core/pom.xml?rev=746527&r1=746526&r2=746527&view=diff
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-core/pom.xml (original)
+++ webservices/juddi/branches/v3_trunk/juddi-core/pom.xml Sat Feb 21 15:22:18 2009
@@ -155,4 +155,92 @@
         <scope>test</scope>
      </dependency>
   </dependencies>
+  <profiles>
+    <profile> 
+    <id>hibernate</id>
+    <activation>
+      <property>
+      <name>persistence</name>
+      <value>hibernate</value>
+      </property>
+    </activation>
+    <dependencies>
+      <dependency>
+        <groupId>org.hibernate</groupId>
+        <artifactId>hibernate</artifactId>
+        <version>3.2.5.ga</version>
+        <exclusions>
+          <exclusion>
+            <groupId>cglib</groupId> 
+            <artifactId>cglib</artifactId>
+          </exclusion>
+        </exclusions> 
+      </dependency>
+      <dependency>
+        <groupId>org.hibernate</groupId>
+        <artifactId>hibernate-entitymanager</artifactId>
+        <version>3.3.1.ga</version> 
+        <exclusions>
+          <exclusion>
+            <groupId>cglib</groupId> 
+            <artifactId>cglib</artifactId>
+          </exclusion>
+        </exclusions> 
+      </dependency>
+      <dependency>
+		<groupId>cglib</groupId>
+        <artifactId>cglib-nodep</artifactId>
+        <version>2.1_3</version>
+      </dependency>
+    </dependencies>
+  </profile>
+  <profile>
+		<id>openjpa</id>
+		<activation>
+			<property>
+				<name>persistence</name>
+				<value>openjpa</value>
+			</property>
+		</activation>
+		 <dependencies>
+      <dependency> 
+        <groupId>org.apache.openjpa</groupId>
+        <artifactId>openjpa</artifactId>
+        <version>1.2.0</version>
+      </dependency>
+    </dependencies>
+		<build>
+			<plugins>
+				<plugin>
+					<groupId>org.codehaus.mojo</groupId>
+					<artifactId>openjpa-maven-plugin</artifactId>
+					<executions>
+						<execution>
+							<id>JPA Enhance</id>
+							<phase>process-classes</phase>
+							<goals>
+								<goal>enhance</goal>
+							</goals>
+						</execution>
+					</executions>
+					<configuration>
+					    <classes>
+					      ${project.build.outputDirectory}/org/apache/juddi/model/
+					    </classes>
+						<toolProperties>
+							<property>
+								<name>addDefaultConstructor</name>
+								<value>true</value>
+							</property>
+							<property>
+								<name>enforcePropertyRestrictions</name>
+								<value>true</value>
+							</property>
+						</toolProperties>
+					</configuration>
+				</plugin>
+			</plugins>
+		</build>
+		</profile>
+	</profiles>
 </project>

Modified: webservices/juddi/branches/v3_trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/pom.xml?rev=746527&r1=746526&r2=746527&view=diff
==============================================================================
--- webservices/juddi/branches/v3_trunk/pom.xml (original)
+++ webservices/juddi/branches/v3_trunk/pom.xml Sat Feb 21 15:22:18 2009
@@ -4,7 +4,7 @@
   <packaging>pom</packaging>
   <groupId>org.apache.juddi</groupId>
   <artifactId>juddi-parent</artifactId>
-  <version>3.0.0.alpha</version>
+  <version>3.0.0.SNAPSHOT</version>
   <name>jUDDI_v3 Parent</name>
   
   <description>jUDDI (pronounced "Judy") is an open source Java implementation of the Universal Description, Discovery, and Integration (UDDI) specification for Web Services.</description>
@@ -141,89 +141,6 @@
   <dependencies>
   </dependencies>
   <profiles>
-  <profile> 
-    <id>hibernate</id>
-    <activation>
-      <property>
-      <name>persistence</name>
-      <value>hibernate</value>
-      </property>
-    </activation>
-    <dependencies>
-      <dependency>
-        <groupId>org.hibernate</groupId>
-        <artifactId>hibernate</artifactId>
-        <version>3.2.5.ga</version>
-        <exclusions>
-          <exclusion>
-            <groupId>cglib</groupId> 
-            <artifactId>cglib</artifactId>
-          </exclusion>
-        </exclusions> 
-      </dependency>
-      <dependency>
-        <groupId>org.hibernate</groupId>
-        <artifactId>hibernate-entitymanager</artifactId>
-        <version>3.3.1.ga</version> 
-        <exclusions>
-          <exclusion>
-            <groupId>cglib</groupId> 
-            <artifactId>cglib</artifactId>
-          </exclusion>
-        </exclusions> 
-      </dependency>
-      <dependency>
-		<groupId>cglib</groupId>
-        <artifactId>cglib-nodep</artifactId>
-        <version>2.1_3</version>
-      </dependency>
-    </dependencies>
-  </profile>
-  <profile>
-    <id>openjpa</id>
-    <activation>
-      <property>
-      <name>persistence</name>
-      <value>openjpa</value>
-      </property>
-    </activation>
-    <dependencies>
-      <dependency> 
-        <groupId>org.apache.openjpa</groupId>
-        <artifactId>openjpa</artifactId>
-        <version>1.2.0</version>
-      </dependency>
-    </dependencies>
-<build>
-<plugins>
-<plugin>
-  <groupId>org.codehaus.mojo</groupId>
-  <artifactId>openjpa-maven-plugin</artifactId>
-  <executions>
-    <execution>
-      <id>JPA Enhance</id>
-      <phase>process-classes</phase>
-      <goals>
-        <goal>enhance</goal>
-      </goals>
-    </execution>
-  </executions>
-  <configuration>
-    <toolProperties>
-      <property>
-        <name>addDefaultConstructor</name>
-        <value>true</value>
-      </property>
-      <property>
-        <name>enforcePropertyRestrictions</name>
-        <value>true</value>
-      </property>
-    </toolProperties>
-  </configuration>
-</plugin>
-</plugins>
-</build>
-</profile>
     <profile>
       <id>release</id>
       <build>



---------------------------------------------------------------------
To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: juddi-cvs-help@ws.apache.org