|
|
|
|
How to automate webstart deployment
Posted:
May 22, 2008 9:06 PM
|
|
|
How are people automating their webstart deployment?
I'm returning to the webstart fold and I'm a bit saddened to see that it's still difficult to automate a webstart deployment. So I'm curious if there are any solutions out there that I simply don't know about. Any magical ant tasks that offer push button automation for webstart? I've searched google and come across a few but they all seem to be woefully out of date. So what are people using to automate their webstart deployment?
|
|
|
|
|
|
|
Re: How to automate webstart deployment
Posted:
May 23, 2008 11:48 AM
in response to: ocean
|
|
|
if you are using NetBeans you will find a check box in the project properties which enables webstart deployment.
If you use java.net (or similar) for project hosting simple <copy/> your deployed project into the www folder with an ANT target and you will have your fresh webstartable application on the webserver on next commit.
At least thats how I am doing that (additionally to signing+pack200 compression).
|
|
|
|
|
|
|
|
Re: How to automate webstart deployment
Posted:
May 27, 2008 12:46 PM
in response to: pepijnve
|
|
|
Thanks pepijnve, that's almost exactly what I was looking for. The next challenge is to automate the signing and packing of jars. This could likely be hacked together using the SignJar ant-task I think. Any other tips?
|
|
|
|
|