You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/04/06 21:12:18 UTC

svn commit: r1089586 - /tapestry/tapestry5/trunk/plastic/pom.xml

Author: hlship
Date: Wed Apr  6 19:12:18 2011
New Revision: 1089586

URL: http://svn.apache.org/viewvc?rev=1089586&view=rev
Log:
TAP5-853: Update the Maven build for the import of ASM source

Modified:
    tapestry/tapestry5/trunk/plastic/pom.xml

Modified: tapestry/tapestry5/trunk/plastic/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/plastic/pom.xml?rev=1089586&r1=1089585&r2=1089586&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/plastic/pom.xml (original)
+++ tapestry/tapestry5/trunk/plastic/pom.xml Wed Apr  6 19:12:18 2011
@@ -10,13 +10,24 @@
     <version>5.3.0-SNAPSHOT</version>
   </parent>
 
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>src/main/java/**/*.java</include>
+            <include>src/external/java/**/*.java</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
   <dependencies>
     <dependency>
-      <groupId>asm</groupId>
-      <artifactId>asm-all</artifactId>
-      <version>3.3.1</version>
-    </dependency>
-    <dependency>
       <groupId>org.spockframework</groupId>
       <artifactId>spock-core</artifactId>
       <version>0.5-groovy-1.7</version>