reta commented on a change in pull request #566: CXF-8066: Support Doclet API
(JDK13+)
URL: https://github.com/apache/cxf/pull/566#discussion_r302343826
##########
File path: maven-plugins/java2wadl-plugin/pom.xml
##########
@@ -208,5 +208,56 @@
</plugins>
</build>
</profile>
+
+ <profile>
+ <id>jdk13</id>
+ <activation>
+ <jdk>[13,)</jdk>
+ </activation>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>default-jdk13-compile</id>
+ <goals>
+ <goal>compile</goal>
+ </goals>
+ <configuration>
+
<forceJavacCompilerUse>true</forceJavacCompilerUse>
+ <compileSourceRoots>
+
<compileSourceRoot>${project.basedir}/src/main/java13</compileSourceRoot>
+ </compileSourceRoots>
+
<outputDirectory>${project.build.outputDirectory}/META-INF/versions/13</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <release>9</release>
Review comment:
Workaround (for now, no impact on release artifacts) for `tools.jar`
(https://bugs.openjdk.java.net/browse/JDK-8199325)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services