Skip to content

Commit

Permalink
Fixed missing file copy
Browse files Browse the repository at this point in the history
  • Loading branch information
offtherailz committed Oct 22, 2024
1 parent 0e8fa20 commit 7a0d3d5
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,52 @@
</resources>
</configuration>
</execution>
<execution>
<id>only dashboard-embedded.html</id>
<phase>process-classes</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${resources.output.dir}</outputDirectory>
<encoding>UTF-8</encoding>
<resources>
<resource>
<directory>${basedir}/../dist</directory>
<includes>
<include>dashboard-embedded.html</include>
</includes>
<excludes>
<exclude>MapStore2/*</exclude>
<exclude>MapStore2/**/*</exclude>
</excludes>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>only geostory-embedded.html</id>
<phase>process-classes</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${resources.output.dir}</outputDirectory>
<encoding>UTF-8</encoding>
<resources>
<resource>
<directory>${basedir}/../dist</directory>
<includes>
<include>geostory-embedded.html</include>
</includes>
<excludes>
<exclude>MapStore2/*</exclude>
<exclude>MapStore2/**/*</exclude>
</excludes>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>only api.html</id>
<phase>process-classes</phase>
Expand Down

0 comments on commit 7a0d3d5

Please sign in to comment.