You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by da...@apache.org on 2017/09/27 18:51:32 UTC

svn commit: r1809899 - /felix/trunk/converter/converter/pom.xml

Author: davidb
Date: Wed Sep 27 18:51:32 2017
New Revision: 1809899

URL: http://svn.apache.org/viewvc?rev=1809899&view=rev
Log:
Compile converter for Java 7 while leaving the unit tests at Java 8

Modified:
    felix/trunk/converter/converter/pom.xml

Modified: felix/trunk/converter/converter/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/converter/converter/pom.xml?rev=1809899&r1=1809898&r2=1809899&view=diff
==============================================================================
--- felix/trunk/converter/converter/pom.xml (original)
+++ felix/trunk/converter/converter/pom.xml Wed Sep 27 18:51:32 2017
@@ -39,12 +39,22 @@
 
     <properties>
         <felix.java.version>8</felix.java.version>
-        <felix.java.signature.artifactId>java17</felix.java.signature.artifactId> <!-- Can we move this to java17? -->
+        <felix.java.signature.artifactId>java17</felix.java.signature.artifactId>
     </properties>
 
     <build>
         <plugins>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.7</source>
+                    <target>1.7</target>
+                    <testSource>1.8</testSource>
+                    <testTarget>1.8</testTarget>
+                </configuration>
+            </plugin>
+            <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
                 <version>3.2.0</version>