summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 08d07b5..8fb8e45 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,6 +21,7 @@
<quarkus-plugin.version>1.3.1.Final</quarkus-plugin.version>
<surefire-plugin.version>3.0.0-M4</surefire-plugin.version>
<spotless-plugin.version>1.30.0</spotless-plugin.version>
+ <antrun-plugin.version>1.8</antrun-plugin.version>
<!-- <quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id> -->
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
@@ -366,6 +367,24 @@
</configuration>
</plugin>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>${antrun-plugin.version}</version>
+ <executions>
+ <execution>
+ <phase>generate-resources</phase>
+ <configuration>
+ <target>
+ <ant target="web.resources" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
<resources>