1

I am looking for a tool to build and deploy java web applications. Currently I am using JBOSS 4.x. The tool should be able to get the latest version from Visual Source Safe and make a build with latest code and deploy it to JBOSS application server.

mmmmmm
  • 32,227
  • 27
  • 88
  • 117
Somnath Guha
  • 107
  • 3
  • 13

3 Answers3

1

Ant has WAR Task to build WAR.

And to deploy,

Community
  • 1
  • 1
Ramesh PVK
  • 15,200
  • 2
  • 46
  • 50
1

Maven is also a very widely used solution: http://maven.apache.org/

EDIT (Mulmoth): To make the answer complete: With its plugin architecture, it has appropriate support for Visual Source Safe and JBoss.

Besides that, it has a lot of other blessings, like dependency management.

Zeemee
  • 10,486
  • 14
  • 51
  • 81
Tomer
  • 17,787
  • 15
  • 78
  • 137
0

I will suggest to use Hudson.. Very good freeware deployment tool. See more

Sunil Chavan
  • 2,934
  • 4
  • 25
  • 24