Skip to content

Commit aa57e4e

Browse files
committed
#326 fix
1 parent b44d65b commit aa57e4e

3 files changed

Lines changed: 22 additions & 26 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ target/
1616
src/main/assembly/static/lib/*.jar
1717

1818
src/main/generated-sources
19+
src/resources/public
1920
conf/sql-boot*

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,27 @@
478478
</plugin>
479479

480480

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+
481502
</plugins>
482503
</build>
483504

src/main/resources/public/index.html

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)