Commit db586544 authored by Andy Wilkinson's avatar Andy Wilkinson

Make JAXB API available to Groovy Templates when running on Java 9+

See gh-13670
parent 42f4f2de
...@@ -35,4 +35,18 @@ ...@@ -35,4 +35,18 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<profiles>
<profile>
<id>java9</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment