You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by tc...@apache.org on 2010/01/15 17:39:41 UTC

svn commit: r899692 - /webservices/juddi/trunk/juddi-core/pom.xml

Author: tcunning
Date: Fri Jan 15 16:39:41 2010
New Revision: 899692

URL: http://svn.apache.org/viewvc?rev=899692&view=rev
Log:
JUDDI-267
openjpa enhance wasn't being triggered in maven build.    Rearranged
the order of the plugin configuration within the openjpa profile to get this
working.

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

Modified: webservices/juddi/trunk/juddi-core/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-core/pom.xml?rev=899692&r1=899691&r2=899692&view=diff
==============================================================================
--- webservices/juddi/trunk/juddi-core/pom.xml (original)
+++ webservices/juddi/trunk/juddi-core/pom.xml Fri Jan 15 16:39:41 2010
@@ -282,51 +282,49 @@
         <version>1.2.1</version>
       </dependency>
     </dependencies>
-	<build>
-      <pluginManagement>
+    <build>
         <plugins>
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-surefire-plugin</artifactId>
-			<version>2.4</version>
+	    <version>2.4</version>
             <configuration>
-			  <skip>false</skip>
-			  <includes>
-				<include>**/*Test.java</include>
-			  </includes>
+		  <skip>false</skip>
+		  <includes>
+			<include>**/*Test.java</include>
+		  </includes>
             </configuration>
         </plugin>
-		<plugin>
-			<groupId>org.codehaus.mojo</groupId>
-			<artifactId>openjpa-maven-plugin</artifactId>
-			<version>1.0</version>
-			<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>
+		<groupId>org.codehaus.mojo</groupId>
+		<artifactId>openjpa-maven-plugin</artifactId>
+		<version>1.0</version>
+                <executions>
+                        <execution>
+                                <id>enhancer</id>
+                                <phase>process-classes</phase>
+		                <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>
+                                <goals>
+                                        <goal>enhance</goal>
+                                </goals>
+                        </execution>
+		</executions>
 		</plugin>
 	  </plugins>
-	  </pluginManagement>
 	</build>
   </profile>
  </profiles>



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