Author: desruisseaux
Date: Mon Feb 2 15:20:31 2015
New Revision: 1656486
URL: http://svn.apache.org/r1656486
Log:
Allows to specify the bootstrap classpath.
This will be needed for compiling the release targeting JDK6 using a JDK8
compiler.
Modified:
sis/branches/JDK8/pom.xml
Modified: sis/branches/JDK8/pom.xml
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/pom.xml?rev=1656486&r1=1656485&r2=1656486&view=diff
==============================================================================
--- sis/branches/JDK8/pom.xml (original)
+++ sis/branches/JDK8/pom.xml Mon Feb 2 15:20:31 2015
@@ -423,6 +423,26 @@ Apache SIS is a free software, Java lang
<maven.compiler.optimize>true</maven.compiler.optimize>
</properties>
</profile>
+ <profile>
+ <activation>
+ <property>
+ <name>bootclasspath</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <compilerArgs>
+ <arg>-bootclasspath</arg>
+ <arg>${bootclasspath}</arg>
+ </compilerArgs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>