Re: build a maven artifact with a list of jars

2016-03-25 Thread Ron Wheeler
Look at my articles at blog.artifact-software.com/tech on Maven We do this as a normal way to work with Maven. Ron Ron On 24/03/2016 3:37 PM, Natva, Arun Kumar wrote: Hi, I have a list of jars (say around 100) and most of the applications developed in my team need these jars. I need to

Re: Anyone using annotationProcessorPaths in maven-compiler-plugin

2016-03-25 Thread Mark Derricutt
This was using 1.8 and the 3.5.1 of the compiler plugin ( which seems to have quite major differences in behaviour to 3.5 ), which I think it uses the tools api and not calling javac ( I do note theres an option to force using javac tho ) so might give that a shot. -- "Great artists are

received "invoice" with malware/phisihing

2016-03-25 Thread Chuck O'Neill
Just an FYI: Today I received the email below which had malware attached: From: Jordan Porter > Reply-To: Maven Users List > Date: Friday, March 25, 2016 at 4:19 AM To: maven-users

RE: AW: Find the correct build order of a set of distinct butinterdependent projects

2016-03-25 Thread Martin Gainty
MG2>quick comment below > Date: Fri, 25 Mar 2016 12:28:37 +0100 > From: christophe.thiebaud@dag.cloud > To: users@maven.apache.org > Subject: RE: AW: Find the correct build order of a set of distinct > butinterdependent projects > > On 2016-03-22 22:24, Christophe Thiebaud wrote: > > Hi all, >

RE: AW: Find the correct build order of a set of distinct butinterdependent projects

2016-03-25 Thread Christophe Thiebaud
On 2016-03-22 22:24, Christophe Thiebaud wrote: Hi all, for those interested, I stumbled on a (natural) defect with the approach "#2 "super" multi-module pom" (cf. http://dag.cloud/docs/theproblem.html) e.g. let A and B be 2 projects that need ordering let A be itself a multi-module

Re: build a maven artifact with a list of jars

2016-03-25 Thread Mark Eggers
Arun, What I've done in the past is to make a new project consisting of nothing but dependencies with a packaging type of pom. This is loaded into our local Nexus repository and referenced with a dependency like the following: com.myCompany collection-of-jars 1.0.0 pom This pulls in the

Re: Anyone using annotationProcessorPaths in maven-compiler-plugin

2016-03-25 Thread Thomas Broyer
Have you set source and target to at least 1.6 or 6? You should see the -processorpath argument being passed to JavaC when running with -X. Le jeu. 24 mars 2016 00:37, Mark Derricutt a écrit : > Hey all, > > Has anyone successfully used the new setting > in the

build a maven artifact with a list of jars

2016-03-25 Thread Natva, Arun Kumar
Hi, I have a list of jars (say around 100) and most of the applications developed in my team need these jars. I need to create a maven artifact using these jars and upload the artifact into my company's internal nexus repository so that other developers can simply add this artifact as a