embedded platform use maven

2016-10-17 Thread Diaz Soho
Hi , If my embedded platform can run jamvm for java applications. Is it possible to run maven on the embedded platform for java application ? does maven provide .so shared library or classpath for java application? - To

Re: maven build broken with jdk1.8

2016-10-17 Thread Guillaume Boué
Hi, The error you have is "... was cached in the local repository, resolution will not be reattempted until the update interval of Proper-Resolution has elapsed or updates are forced". The typical resolution to this is to force Maven to update releases and snapshots with the -U parameter. On

Re: Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread Manfred Moser
The best way is to sync your stuff to the Central Repository imho. Otherwise you are probably best off with using repositories in the POM or a checked in settings file and build.sh reference command build like mvn -s ... manfred Curtis Rueden wrote on 2016-10-17 15:00: > Hi everyone, > > I

Re: Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread Curtis Rueden
Hi everyone, I have an OSS project with "mixed" dependencies—some in central, and some in our public Maven repo (because they are still in incubation or beta). Every time this discussion arises, I find myself wondering the same thing: how can you achieve an "out-of-the-box" build for such a

Re: Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread Manfred Moser
If you really feel you need to control the source of where you download components from within the source control system I would still NOT use the repositories definition in the POM since that is them transferred to the target repo on deployment (unless you use flatten). Instead I would check

RE: Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread KARR, DAVID
> -Original Message- > From: Manfred Moser [mailto:manf...@simpligility.com] > Sent: Monday, October 17, 2016 1:35 PM > To: users@maven.apache.org > Subject: Re: Comparing specifying repositories in pom vs. settings.xml? > >

Re: Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread Manfred Moser
http://blog.sonatype.com/2009/02/why-putting-repositories-in-your-poms-is-a-bad-idea/ KARR, DAVID wrote on 2016-10-17 13:03: > One thing I run into when jumping between different projects is different > expectations for what maven repos I need to be using. In the past, I had to > have multiple

RE: Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread Robert Patrick
My team always favors defining repos in the top-level (parent) POM. If we require special project-specific settings that must be in settings.xml, we put settings.xml in the top-level of the project source tree and check it in... For publishing projects to our binary repo for consumption by

Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread KARR, DAVID
One thing I run into when jumping between different projects is different expectations for what maven repos I need to be using. In the past, I had to have multiple copies of "~/.m2/settings.xml" lying around, and I would hack the specified repos when I needed to. Recently, I saw a situation

maven build broken with jdk1.8

2016-10-17 Thread Gopalakrishnan, Gopal (CORP)
Hi: I am not an expert at maven. Here's the scenario. My entire project compiles without any errors under jdk1.7 I use artifactory to store common libraries. Under jdk 1.7, they got resolved without any problems. All I did was to change the jdk from 1.7 to 1.8. I am using intellij 2016.