Skip to content

Instantly share code, notes, and snippets.

@just-boris
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save just-boris/6b2539f36278cdb924b9 to your computer and use it in GitHub Desktop.

Select an option

Save just-boris/6b2539f36278cdb924b9 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<outputDirectory>target/package/</outputDirectory>
<resources>
<resource>
<directory>src</directory>
<includes>
<include>config/**</include>
<include>data/**</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
<executions>
<execution>
<goals>
<goal>copy-resources</goal>
</goals>
<phase>test</phase>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment