• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hi , Ant Script for Autio deployment on JBoss

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Team ,

Please any one help for scripting to auto deployment on JBOSS 5 server ,
The server has to start and stop automatically by tool.
It has to check out code from the CVS and to create jar deploy on server.


Regards,
Ramesh
 
Ranch Foreman
Posts: 275
jQuery Eclipse IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ant has CVS task to talk to CVS and exec task which can be used to execute start and stop scripts of the server.
Of course before restarting the server you need to do below-
Compile using javac, package the jar using jar task and copy it to the server's deploy directory.
 
Ramesh Ko
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Aniruddh Joshi wrote:Ant has CVS task to talk to CVS and exec task which can be used to execute start and stop scripts of the server.
Of course before restarting the server you need to do below-
Compile using javac, package the jar using jar task and copy it to the server's deploy directory.



Help me with any script available
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please see: NotACodeMill

If you would post what you have so far, and describe how it is not working for you, we'd be happy to help.

P.S. Deploying to JBoss AS 5.x means copying a WAR or EAR file to the deploy folder. All you really need for that is Ant's <copy> task.
 
And will you succeed? Yes you will indeed! (98 and 3/4 % guaranteed) - Seuss. tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic