You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2014/07/04 00:22:47 UTC

svn commit: r1607758 - /tomee/tomee/trunk/pom.xml

Author: rmannibucau
Date: Thu Jul  3 22:22:47 2014
New Revision: 1607758

URL: http://svn.apache.org/r1607758
Log:
allowing to build tomee with java 8 - take care to not deploy it with java 8 ;)

Modified:
    tomee/tomee/trunk/pom.xml

Modified: tomee/tomee/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/pom.xml?rev=1607758&r1=1607757&r2=1607758&view=diff
==============================================================================
--- tomee/tomee/trunk/pom.xml (original)
+++ tomee/tomee/trunk/pom.xml Thu Jul  3 22:22:47 2014
@@ -204,6 +204,18 @@
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-remote-resources-plugin</artifactId>
+          <version>1.5</version>
+          <dependencies>
+            <dependency> <!-- java 8 NPE fix -->
+              <groupId>org.apache.maven.shared</groupId>
+              <artifactId>maven-filtering</artifactId>
+              <version>1.2</version>
+            </dependency>
+          </dependencies>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-resources-plugin</artifactId>
           <version>2.6</version>
         </plugin>