Fixes maven build

This commit is contained in:
Guillaume Tâche
2024-11-18 22:42:14 +01:00
parent 4777ec8104
commit 16c6da51fe
3 changed files with 22 additions and 9 deletions

View File

@@ -42,4 +42,21 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<!-- Enable filtering as workaround for symlink issue: https://issues.apache.org/jira/browse/MRESOURCES-237 -->
<filtering>true</filtering>
<includes>
<include>com/github/gtache/fxml/compiler/impl/*.properties</include>
<include>com/github/gtache/fxml/compiler/impl/*.fxml</include>
<include>com/github/gtache/fxml/compiler/impl/*.css</include>
<include>com/github/gtache/fxml/compiler/impl/*.txt</include>
<include>com/github/gtache/fxml/compiler/parsing/listener/*</include>
</includes>
</testResource>
</testResources>
</build>
</project>