You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2011/08/24 03:54:29 UTC

svn commit: r1160959 - /uima/uima-as/trunk/uimaj-as-core/pom.xml

Author: cwiklik
Date: Wed Aug 24 01:54:28 2011
New Revision: 1160959

URL: http://svn.apache.org/viewvc?rev=1160959&view=rev
Log:
UIMA-2163 added xmlbeans dependency and xmlbeans-maven-plugin

Modified:
    uima/uima-as/trunk/uimaj-as-core/pom.xml

Modified: uima/uima-as/trunk/uimaj-as-core/pom.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/trunk/uimaj-as-core/pom.xml?rev=1160959&r1=1160958&r2=1160959&view=diff
==============================================================================
--- uima/uima-as/trunk/uimaj-as-core/pom.xml (original)
+++ uima/uima-as/trunk/uimaj-as-core/pom.xml Wed Aug 24 01:54:28 2011
@@ -102,6 +102,13 @@
       <scope>compile</scope>
     </dependency>
    
+   <dependency>
+      <groupId>org.apache.xmlbeans</groupId>
+      <artifactId>xmlbeans</artifactId>
+      <version>2.4.0</version>
+      <scope>compile</scope>
+    </dependency>
+    
 	</dependencies>
 	<build>
 		<finalName>${project.artifactId}</finalName>
@@ -151,6 +158,22 @@
           </execution>
         </executions>
       </plugin>
+      
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>xmlbeans-maven-plugin</artifactId>
+        <version>2.3.3</version>
+        <executions>
+          <execution>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>xmlbeans</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      
+      
     </plugins>			
 	</build>
 </project>
\ No newline at end of file