I have to manually deploy my servlet war packages on an Apache tomcat instance running on an AWS (Amazon Web Services) machine (remote server).
Also i have Maven setup for dependency management ...
What is the most elegant way of deploying Maven build jars (through teamcity) on unix box.
Currently,we're deploying these jars only to artifactory.
Thanks for any suggestions.
Is there a way for maven to trigger system command after successful or unsuccessful build?
Right now I'm using external script to run mvn package, but I would like this feature integrated ...
Hi I Have recently started using Jenkins and currently using version 1.408.
I have a Maven multi module project which produces a number of Jar and zip files which I want to ...
I have a small maven project that build a java jar file. I added a plugin (maven-antrun-plugin) in order to start it during maven's build phase. This also works in the ...
I have 2 (core, core-web) projects such a way that one is depending on another.
so the core-web's POM.xml contains the dependency of core.
core-web will be deployed on jBoss AS (5.1). Therefore ...