Re: Maven , Jenkins and pom.xml

2018-10-14 Thread Arnaud Héritier
Hi, It is often considered dangerous or difficult to manage dependencies between projects. It is sometimes useful, at least temporarily to have project depending to another project using a SNAPSHOT dependency and in such a case for sure you would love to have your CI tool discovering / updati

Re: Maven , Jenkins and pom.xml

2018-10-12 Thread Jan Monterrubio
Maven is a build automation tool. The pom.xml describes the build and how to perform it. It’s mostly used for java projects. Jenkins simply invokes the maven process and adds other nice features on top. Jenkins doesn’t decide dependencies, those are all configured by the pom. So think of Jenkins

Maven , Jenkins and pom.xml

2018-10-12 Thread Rehan Baig
Guys I am newbie here trying to learn CICD using jenkins I went through pom.xml where we control the build order and provide dependencies , the training I saw is an old video, I am curious to know do we still use pom.xml to structure our CI and integerate it with jenkisn ? Or jenkisn do all the de