Skip to content

Commit

Permalink
#326 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mgramin committed May 28, 2019
1 parent b44d65b commit aa57e4e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 26 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ target/
src/main/assembly/static/lib/*.jar

src/main/generated-sources
src/resources/public
conf/sql-boot*
21 changes: 21 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,27 @@
</plugin>


<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>copy</id>
<phase>package</phase>
<configuration>
<target>
<copy todir="src/main/resources/public">
<fileset dir="src/main/malewicz/dist"/>
</copy>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down
26 changes: 0 additions & 26 deletions src/main/resources/public/index.html

This file was deleted.

0 comments on commit aa57e4e

Please sign in to comment.