[ANN] Apache Maven Wagon 3.1.0 released

2018-06-07 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Apache Maven Wagon, version 3.1.0. https://maven.apache.org/wagon/ Release Notes - Maven Wagon - Version 3.1.0 ** Bug * [WAGON-452] - RelaxedTrustStrategy does not handle multiple certificates * [WAGON-493] - Maven wag

Re: Maven plug-in development: Obtaining name of artifact

2018-06-07 Thread Robert Scholte
What do you mean with "name of the artifact": the value of the name-element in the pom? The name of the file? Robert On Thu, 07 Jun 2018 09:46:25 +0200, wrote: Hello everyone, :-) I'm currently writing a Maven plug-in and I have the coordinates of artifacts (groupId, artifactId, version),

AW: Maven plug-in development: Obtaining name of artifact

2018-06-07 Thread g.hohl
In the meantime I had a look and found out that I can get the path for the local artifact: session.getRepositorySession().getLocalRepositoryManager().getPathForLocalArtifact(artifact); As for the Artifact I can use the DefaultArtifact. In that folder also the POM of the artifact should reside as i

Maven plug-in development: Obtaining name of artifact

2018-06-07 Thread g.hohl
Hello everyone, :-) I'm currently writing a Maven plug-in and I have the coordinates of artifacts (groupId, artifactId, version), but I need the names of the artifacts. Is there an easy way to get them (within my plug-in without relying on other plug-ins)? Regards, Gerrit