Commit 8dff8d3b authored by 周亚武's avatar 周亚武

修改合并mp3文件规则

parent 20084e57
...@@ -242,7 +242,7 @@ ...@@ -242,7 +242,7 @@
<resources> <resources>
<resource> <resource>
<directory>src/main/resources</directory> <directory>src/main/resources</directory>
<!-- <filtering>true</filtering>--> <filtering>true</filtering>
</resource> </resource>
</resources> </resources>
...@@ -302,6 +302,27 @@ ...@@ -302,6 +302,27 @@
</configuration> </configuration>
</execution> </execution>
<execution>
<id>copy-resources</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<encoding>UTF-8</encoding>
<outputDirectory>dist/${project.artifactId}/sound</outputDirectory>
<resources>
<resource>
<directory>src/main/resources/</directory>
<includes>
<include>*.mp3</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
<execution> <execution>
<id>copy-bin</id> <id>copy-bin</id>
...@@ -325,6 +346,8 @@ ...@@ -325,6 +346,8 @@
</configuration> </configuration>
</execution> </execution>
<execution> <execution>
<id>copy-boot</id> <id>copy-boot</id>
<phase>package</phase> <phase>package</phase>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment