I build a desktop application using Maven2.
I'd like to make a release from time to time (just copy all the project's and third party jars into a single dir and generate a run.bat file).
How to do it ?
|
|
|
|
|
|
|
OK I got it with a little help of fahdshariff's answer I used my own assemlby file src/main/assemlby.assembly.xml
and added following to pom
I had to write a run.bat myself - so it's not fully satisfying but will do. |
||
|
|
|
|
Just an addition to the answer given by fahdshariff Your .bat file will running packaged jar file with a filename reflecting the current version of the application, e.g.
On every release this file will need to get updated with a new version name of the application. This can be automatized, too. In your pom.xml file add this section:
This asumes that you have put the yourApp.bat file in the folder:
Content of the yourApp.bat file should look like this:
Just run the Maven commands and enjoy. |
||
|
|
|
|
You need to create run.bat yourself and place it in src/main/assembly/scripts, for example. Then you need to create an assembly.xml file in src/main/assembly. Here is an example of an assembly.xml file that you might want to use. It creates a tar.gz with all your dependency jars and your run.bat.
Finally, in your pom.xml file add the assembly plugin:
Now, when you run "mvn install" you should see your tar.gz created. To release run: mvn release:prepare |
||
|
|
|
|
i would go with the maven release plugin, see: |
||
|
|