You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by js...@apache.org on 2006/10/11 00:38:15 UTC

svn commit: r462615 - /geronimo/xbean/sandbox/xbean-factory/pom.xml

Author: jstrachan
Date: Tue Oct 10 15:38:15 2006
New Revision: 462615

URL: http://svn.apache.org/viewvc?view=rev&rev=462615
Log:
fixed pom to use apt

Modified:
    geronimo/xbean/sandbox/xbean-factory/pom.xml

Modified: geronimo/xbean/sandbox/xbean-factory/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/xbean/sandbox/xbean-factory/pom.xml?view=diff&rev=462615&r1=462614&r2=462615
==============================================================================
--- geronimo/xbean/sandbox/xbean-factory/pom.xml (original)
+++ geronimo/xbean/sandbox/xbean-factory/pom.xml Tue Oct 10 15:38:15 2006
@@ -1,5 +1,5 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.xbean</groupId>
   <artifactId>xbean-factory</artifactId>
@@ -9,6 +9,53 @@
   <url>http://geronimo.apache.org/xbean</url>
   <dependencies>
     <dependency>
+      <groupId>org.apache.xbean</groupId>
+      <artifactId>xbean-apt</artifactId>
+      <version>1.0-SNAPSHOT</version>
+    </dependency>
+
+    <!-- jaxb -->
+    <dependency>
+      <groupId>com.sun.xml.bind</groupId>
+      <artifactId>jaxb-impl</artifactId>
+      <version>2.0.1</version>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.xml</groupId>
+          <artifactId>jsr173</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.jws</groupId>
+          <artifactId>jsr181-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.activation</groupId>
+          <artifactId>activation</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>javax.xml</groupId>
+      <artifactId>jaxb-api</artifactId>
+      <version>2.0</version>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.xml</groupId>
+          <artifactId>jsr173</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.activation</groupId>
+          <artifactId>activation</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>stax</groupId>
+      <artifactId>stax-api</artifactId>
+      <version>1.0.1</version>
+    </dependency>
+
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>3.8.1</version>
@@ -16,8 +63,36 @@
     </dependency>
   </dependencies>
   <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-apt-plugin</artifactId>
+          <version>2.0</version>
+          <executions>
+            <execution>
+              <goals>
+                <goal>execute</goal>
+              </goals>
+            </execution>
+          </executions>
+
+          <!--
+          <dependencies>
+            <dependency>
+              <groupId>velocity</groupId>
+              <artifactId>velocity</artifactId>
+              <version>1.4</version>
+            </dependency>
+          </dependencies>
+            -->
+
+        </plugin>
+      </plugins>
+    </pluginManagement>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
           <source>1.5</source>
@@ -25,10 +100,23 @@
         </configuration>
       </plugin>
       <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-apt-plugin</artifactId>
         <configuration>
-          <excludes/>
+          <nocompile>false</nocompile>
+          <verbose>false</verbose>
+          <A>debug, loglevel=3</A>
+          <target>1.5</target>
         </configuration>
+        <!--
+        <dependencies>
+          <dependency>
+            <groupId>velocity</groupId>
+            <artifactId>velocity</artifactId>
+            <version>1.4</version>
+          </dependency>
+        </dependencies>
+        -->
       </plugin>
     </plugins>
   </build>