Hi
Is it possible to add a task to the pom.xml file that will create a tar.gz / .zip file.
for eample:
<tar type="tar.gz" source="resources/sql" tofile="target/sql.tar.gz"/>
Thanks
|
|
Use the Create a src/main/assembly/bin.xml as detailed at http://maven.apache.org/plugin-developers/cookbook/generate-assembly.html and http://maven.apache.org/plugins/maven-assembly-plugin/descriptor-refs.html#bin Put your resources sql files in the Next, in your pom.xml put the reference to this plugin
http://maven.apache.org/plugins/maven-assembly-plugin/usage.html Last, call this using
|
|||||||
|