You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by fm...@apache.org on 2010/03/19 12:56:55 UTC

svn commit: r925187 - /felix/trunk/webconsole-plugins/memoryusage/pom.xml

Author: fmeschbe
Date: Fri Mar 19 11:56:55 2010
New Revision: 925187

URL: http://svn.apache.org/viewvc?rev=925187&view=rev
Log:
FELIX-2208 Force compilation to Java 5 class files (using Generics etc.)

Modified:
    felix/trunk/webconsole-plugins/memoryusage/pom.xml

Modified: felix/trunk/webconsole-plugins/memoryusage/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/memoryusage/pom.xml?rev=925187&r1=925186&r2=925187&view=diff
==============================================================================
--- felix/trunk/webconsole-plugins/memoryusage/pom.xml (original)
+++ felix/trunk/webconsole-plugins/memoryusage/pom.xml Fri Mar 19 11:56:55 2010
@@ -52,6 +52,14 @@
     <build>
         <plugins>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+            <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
                 <extensions>true</extensions>