Re: Maven and Continous Integration / Continous Delivery

2016-04-20 Thread Irfan Sayed
here is what needs to be done: - while building the packages, use the mvn option -DnewVersion and replace the new version in POM.xml. this will happen through Jenkins server (for example CI server ) . for this, you need to make all POMs writable. - once the packages are built with new

Re: generate maven dependency difference between two Jenkins builds

2014-11-04 Thread Irfan Sayed
are allowed to be changed. Domi On 04.11.2014, at 08:10, Irfan Sayed irfu.sa...@gmail.com wrote: thanks. what i figured out is , nexus / artifactory will not download the dependency unless there is change in the version. if dependency x refers version 1.1 , then maven will see if nexus

explicit dependencies in maven

2014-11-03 Thread Irfan Sayed
hello, is there any good doc/blog which describes the handling of explicit declaration of dependencies. when we build the code, we use certain dependencies , how we can make sure that when we reproduce the same build after the gap of 6 months , same and exact dependencies will be used. ??? i know

Re: explicit dependencies in maven

2014-11-03 Thread Irfan Sayed
, Irfan Sayed wrote: hello, is there any good doc/blog which describes the handling of explicit declaration of dependencies. when we build the code, we use certain dependencies , how we can make sure that when we reproduce the same build after the gap of 6 months , same and exact dependencies

Re: explicit dependencies in maven

2014-11-03 Thread Irfan Sayed
thanks :) On Tue, Nov 4, 2014 at 10:57 AM, Anders Hammar and...@hammar.net wrote: Yes, that's how it works. /Anders (mobile) Den 4 nov 2014 06:06 skrev Irfan Sayed irfu.sa...@gmail.com: so, lets say if i am using x dependency with version 1.1 and if the developer changes the code

Re: generate maven dependency difference between two Jenkins builds

2014-11-03 Thread Irfan Sayed
expressions and profiles locked down. Gruss Bernd Am Sun, 19 Oct 2014 22:17:45 +0530 schrieb Irfan Sayed irfu.sa...@gmail.com: thanks bernd. anyone has any other suggestions please? regards On Sun, Oct 19, 2014 at 9:49 PM, Bernd Eckenfels e...@zusammenkunft.net

generate maven dependency difference between two Jenkins builds

2014-10-19 Thread Irfan Sayed
hello, we have java project and using maven to build the same. we are using Jenkins. in Jenkins , we can generate the delta of source code changes between two builds. in the same way, do we have any way wherein , we can generate the delta of maven dependencies changed between two builds. please

Re: generate maven dependency difference between two Jenkins builds

2014-10-19 Thread Irfan Sayed
as a target to the maven build, then the resolved list will be printed in the build log. This list can change depending on what is available at build time. Gruss Bernd Am Sun, 19 Oct 2014 20:57:29 +0530 schrieb Irfan Sayed irfu.sa...@gmail.com: hello, we have java project and using

Re: generate maven dependency difference between two Jenkins builds

2014-10-19 Thread Irfan Sayed
and profiles locked down. Gruss Bernd Am Sun, 19 Oct 2014 22:17:45 +0530 schrieb Irfan Sayed irfu.sa...@gmail.com: thanks bernd. anyone has any other suggestions please? regards On Sun, Oct 19, 2014 at 9:49 PM, Bernd Eckenfels e...@zusammenkunft.net wrote: Hello, I

failsafe plugin error with suiteXml

2014-10-07 Thread Irfan Sayed
hi, i am using maven failsafe plugin to run the integration tests however, i am getting following error when i am executing integration tests along with cobertura execute goal mvn-failsafe-plugin: (failsafe-integration-tests) project x: suiteXmlFiles is configured, but there is no TestNG

Re: failsafe plugin error with suiteXml

2014-10-07 Thread Irfan Sayed
please suggest .. i am really stuck regards On Tue, Oct 7, 2014 at 10:51 PM, Irfan Sayed irfu.sa...@gmail.com wrote: hi, i am using maven failsafe plugin to run the integration tests however, i am getting following error when i am executing integration tests along with cobertura execute

maven compiler plugin

2013-10-10 Thread Irfan Sayed
hi, i am using maven compiler plugin. i havent mentioned anything related to plugin in POM.xml i have just used the command on command prompt mvn compiler:compile what is happening is , above command compiles the test classes also . however which should not be the case in my opinion, only main