Re: problem when deploying to nexus with a password with accent

2017-06-16 Thread Gary Gregory
Make sure the XML is saved in the encoding that matches the XML processing instruction, usually UTF-8. Gary On Jun 16, 2017 7:57 AM, "djeanprost" wrote: > Hello, > > I'm meeting a problem I can't deal with, and I hope someone here will help > me find a

problem when deploying to nexus with a password with accent

2017-06-16 Thread djeanprost
Hello, I'm meeting a problem I can't deal with, and I hope someone here will help me find a solution. I want to deploy an artifact to my running nexus 2.14.x. I can log in nexus using my login/password. My password contains a french accent 'é'. When I fill my settings.xml with my clear password

ClassNotFoundException: org.sonatype.aether.collection.DependencyCollectionException

2017-06-16 Thread Sergio Fernández
Hi, I'm suffering this issue, reported at https://issues.apache.org/jira/browse/MARMOTTA-668 I found some details at https://cwiki.apache.org/confluence/display/MAVEN/AetherClassNotFound But the information looks prety old. Does anybody has any hint how to some this build issue? Thanks in

Re: Follow up: Building projects for multiple platforms

2017-06-16 Thread Karl Heinz Marbaise
Hi, I would make a separate module for java8 and run there the retrolambda- maven-plugin and another separate module for java7 and run there the retrolambda- maven-plugin as well...than you can make a separate jar file for each ... No need for different executions of the compiler plugins etc.

RE: Follow up: Building projects for multiple platforms

2017-06-16 Thread Justin Georgeson
Instead of tweaking the version, I would configure an executions of the compiler plugins compile and testcompile goals to a separate output folders, like ${build.directory}${file.separator}classes-java7 and ${build.directory}${file.separator}test-classes-java7 and then an execution of the jar

Re: WELCOME to users@maven.apache.org

2017-06-16 Thread Dave Brosius
Greetings, I have a custom maven plugin that uses MavenProject to getCompileDependencies() on. This works fine. But now i realize that I want to get all the dependencies for a multi module pom. So i use, @Parameter(property = "reactorProjects", readonly = true, required = true)

Follow up: Building projects for multiple platforms

2017-06-16 Thread Christofer Dutz
Hi, A short follow up question regarding my last one. In the Edgent maven build, which I am working on, we need to produce java8, java7 and android versions of jars. This is done by running the retrolambda-maven-plugin on the classes when building the java7 version. To make the dependency