diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2020-04-13 11:25:19 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2020-04-13 11:27:09 +0200 |
commit | 7f4daccab9dc21cfd95be219e5c8c86545d47125 (patch) | |
tree | aca1894a42342ab965092d3b9a589c9c4bc88bdf /pom.xml | |
parent | 699e9abdd5e19ca25e24c5c5044f5593c9668fda (diff) |
Copy web resource build steps into an Ant script, integrate into POM.
Change-Id: I1a0d2309bb35264350ecf2a49e79398a31610cba
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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> |