summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-06-14 19:27:42 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-06-14 20:50:35 +0200
commit813e5971c52df6961fe28569597144332e12984b (patch)
tree38fa09b4253a2160ffa4e812199f84f34424ccde /pom.xml
parent96ed854c16164c6e3fc269923f0e5dc9ae9287c9 (diff)
Add Parcel bundler to build process.
Change-Id: Iade8364efa0d2ce9443b67e20bf09ea93a3d7bcd
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 906386c..6b09164 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,6 +19,7 @@
<antrun-plugin.version>3.0.0</antrun-plugin.version>
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<quarkus-plugin.version>1.5.0.Final</quarkus-plugin.version>
+ <resources-plugin.version>3.1.0</resources-plugin.version>
<spotless-plugin.version>1.31.2</spotless-plugin.version>
<!-- <quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id> -->
@@ -261,6 +262,30 @@
</configuration>
</plugin>
+ <!-- Resources -->
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>${resources-plugin.version}</version>
+ <executions>
+ <execution>
+ <id>copy-resources</id>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${basedir}/target/classes/META-INF/resources</outputDirectory>
+ <resources>
+ <resource>
+ <directory>${basedir}/src/main/resources/META-INF/resources/dist</directory>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
<!-- Liquibase -->
<plugin>
<groupId>org.liquibase</groupId>