We are currently evaluating Bamboo 3.2.2. Up to now all our builds have basically been just creating a .EAR file in our IDE (JBoss developer studio) and deploying that .ear to the application server. How would you build a plan in Bamboo to do this?
Thank you. I've figure out how to create the .ear file using and Ant script. But now how do I copy the created artifact to my JBoss deploy directory? I don't see any task types to do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is the JBoss deploy directory on the same agent? If so, you can simply use the script task to move the file into the JBoss directory. If it's on a seperate machine, you could use an Ant SCP task to transfer the file.
http://ant.apache.org/manual/Tasks/scp.html
We are hoping to provide a Bamboo native SCP task soon to make this process easier.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank for the idea about using Ant SCP, but now it appears I'll have to install some kind of SSH server on the target machine (Windows 2003 server) in order to use it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.