We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b44d65b commit aa57e4eCopy full SHA for aa57e4e
3 files changed
.gitignore
@@ -16,4 +16,5 @@ target/
16
src/main/assembly/static/lib/*.jar
17
18
src/main/generated-sources
19
+src/resources/public
20
conf/sql-boot*
pom.xml
@@ -478,6 +478,27 @@
478
</plugin>
479
480
481
+ <plugin>
482
+ <artifactId>maven-antrun-plugin</artifactId>
483
+ <version>1.8</version>
484
+ <executions>
485
+ <execution>
486
+ <id>copy</id>
487
+ <phase>package</phase>
488
+ <configuration>
489
+ <target>
490
+ <copy todir="src/main/resources/public">
491
+ <fileset dir="src/main/malewicz/dist"/>
492
+ </copy>
493
+ </target>
494
+ </configuration>
495
+ <goals>
496
+ <goal>run</goal>
497
+ </goals>
498
+ </execution>
499
+ </executions>
500
+ </plugin>
501
+
502
</plugins>
503
</build>
504
src/main/resources/public/index.html
0 commit comments