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 2013/03/11 18:58:47 UTC

svn commit: r1455262 - in /juddi/trunk: juddi-core-openjpa/pom.xml juddi-core/pom.xml

Author: kstam
Date: Mon Mar 11 17:58:47 2013
New Revision: 1455262

URL: http://svn.apache.org/r1455262
Log:
JUDDI-563 removing profiles from juddi-core, since they are no longer needed.

Modified:
    juddi/trunk/juddi-core-openjpa/pom.xml
    juddi/trunk/juddi-core/pom.xml

Modified: juddi/trunk/juddi-core-openjpa/pom.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-core-openjpa/pom.xml?rev=1455262&r1=1455261&r2=1455262&view=diff
==============================================================================
--- juddi/trunk/juddi-core-openjpa/pom.xml (original)
+++ juddi/trunk/juddi-core-openjpa/pom.xml Mon Mar 11 17:58:47 2013
@@ -79,7 +79,7 @@
                                                         </classes>
                             <addDefaultConstructor>true</addDefaultConstructor>
                             <enforcePropertyRestrictions>true</enforcePropertyRestrictions>
-                            <persistenceXmlFile>src/test/resources/META-INF/persistence.xml</persistenceXmlFile>
+                            <persistenceXmlFile>${basedir}/src/test/resources/META-INF/persistence.xml</persistenceXmlFile>
                             </configuration>
                         <goals>
                             <goal>enhance</goal>

Modified: juddi/trunk/juddi-core/pom.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-core/pom.xml?rev=1455262&r1=1455261&r2=1455262&view=diff
==============================================================================
--- juddi/trunk/juddi-core/pom.xml (original)
+++ juddi/trunk/juddi-core/pom.xml Mon Mar 11 17:58:47 2013
@@ -84,7 +84,30 @@
 					</execution>
 				</executions>
 			</plugin>
-		</plugins>
+			<plugin>
+              <groupId>org.codehaus.mojo</groupId>
+              <artifactId>hibernate3-maven-plugin</artifactId>
+              <version>2.2</version>
+              <!-- <executions> <execution> <phase>process-classes</phase> <goals> 
+                  <goal>hbm2ddl</goal> </goals> </execution> </executions> -->
+              <configuration>
+                  <components>
+                      <component>
+                          <name>hbm2ddl</name>
+                          <implementation>jpaconfiguration</implementation>
+                      </component>
+                  </components>
+                  <componentProperties>
+                      <persistenceunit>juddiDatabase</persistenceunit>
+                      <outputfilename>schema.ddl</outputfilename>
+                      <drop>false</drop>
+                      <create>true</create>
+                      <export>false</export>
+                      <format>true</format>
+                  </componentProperties>
+              </configuration>
+          </plugin>
+	</plugins>
 	</build>
 	<dependencies>
 
@@ -105,20 +128,42 @@
 			<scope>test</scope>
 		</dependency>
 		<dependency>
+            <groupId>commons-configuration</groupId>
+            <artifactId>commons-configuration</artifactId>
+            <version>1.6</version>
+        </dependency>
+		<dependency>
 			<groupId>javax.persistence</groupId>
 			<artifactId>persistence-api</artifactId>
 			<version>1.0</version>
 		</dependency>
+        <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>
+        </dependency>
+        <dependency>
+            <groupId>cglib</groupId>
+            <artifactId>cglib-nodep</artifactId>
+            <version>2.1_3</version>
+        </dependency>
 		<dependency>
 			<groupId>commons-codec</groupId>
 			<artifactId>commons-codec</artifactId>
 			<version>1.3</version>
 		</dependency>
-		<dependency>
-			<groupId>commons-configuration</groupId>
-			<artifactId>commons-configuration</artifactId>
-			<version>1.6</version>
-		</dependency>
+		
 		<dependency>
 			<groupId>org.apache.geronimo.specs</groupId>
 			<artifactId>geronimo-jta_1.1_spec</artifactId>
@@ -155,129 +200,6 @@
 			<version>0.6-beta2</version>
 			<scope>test</scope>
 		</dependency>
-		<dependency>
-			<groupId>cglib</groupId>
-			<artifactId>cglib-nodep</artifactId>
-			<version>2.2</version>
-			<scope>test</scope>
-		</dependency>
 	</dependencies>
-	<profiles>
-		<profile>
-			<id>hibernate</id>
-			<properties>
-				<persistence>hibernate</persistence>
-			</properties>
-			<activation>
-				<activeByDefault>true</activeByDefault>
-			</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>
-				</dependency>
-				<dependency>
-                    <groupId>cglib</groupId>
-                    <artifactId>cglib-nodep</artifactId>
-                    <version>2.1_3</version>
-                </dependency>
-			</dependencies>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.codehaus.mojo</groupId>
-						<artifactId>hibernate3-maven-plugin</artifactId>
-						<version>2.2</version>
-						<!-- <executions> <execution> <phase>process-classes</phase> <goals> 
-							<goal>hbm2ddl</goal> </goals> </execution> </executions> -->
-						<configuration>
-							<components>
-								<component>
-									<name>hbm2ddl</name>
-									<implementation>jpaconfiguration</implementation>
-								</component>
-							</components>
-							<componentProperties>
-								<persistenceunit>juddiDatabase</persistenceunit>
-								<outputfilename>schema.ddl</outputfilename>
-								<drop>false</drop>
-								<create>true</create>
-								<export>false</export>
-								<format>true</format>
-							</componentProperties>
-						</configuration>
-					</plugin>
-				</plugins>
-				<pluginManagement>
-					<plugins>
-						<plugin>
-							<groupId>org.apache.maven.plugins</groupId>
-							<artifactId>maven-source-plugin</artifactId>
-							<executions>
-								<execution>
-									<goals>
-										<goal>jar</goal>
-									</goals>
-								</execution>
-							</executions>
-						</plugin>
-						<plugin>
-							<groupId>org.apache.maven.plugins</groupId>
-							<artifactId>maven-surefire-plugin</artifactId>
-							<version>2.4</version>
-							<configuration>
-								<skip>false</skip>
-								<includes>
-									<include>**/*Test.java</include>
-								</includes>
-							</configuration>
-						</plugin>
-					</plugins>
-				</pluginManagement>
-			</build>
-		</profile>
-		<profile>
-			<id>openjpa</id>
-			<properties>
-				<persistence>openjpa</persistence>
-			</properties>
-			<activation>
-				<activeByDefault>false</activeByDefault>
-			</activation>
-			<dependencies>
-				<dependency>
-					<groupId>org.apache.openjpa</groupId>
-					<artifactId>openjpa</artifactId>
-					<version>1.2.1</version>
-				</dependency>
-			</dependencies>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-surefire-plugin</artifactId>
-						<version>2.4</version>
-						<configuration>
-							<skip>false</skip>
-							<includes>
-								<include>**/*Test.java</include>
-							</includes>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
+		
 </project>



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