This commit is contained in:
Gianpaolo Coro 2015-10-26 10:32:53 +00:00
parent 34a770c4e9
commit be8154f6d5
1 changed files with 25 additions and 0 deletions

25
pom.xml
View File

@ -44,6 +44,31 @@
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/resources</outputDirectory>
<resources>
<resource>
<directory>${basedir}/resources</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>