1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Ignores the dependency on JavaFX
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/engine/pom.xml
+++ b/engine/pom.xml
@@ -195,6 +195,14 @@
<artifactId>animal-sniffer-maven-plugin</artifactId>
</plugin>
<plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/JavaFX*</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
|