[maven-pdf-plugin] - snapshot build error

2018-07-16 Thread Francois Papon
Hi, I tried to build the github master branch of the Maven-pdf-plugin but I have an error : [ERROR] Failed to execute goal org.apache.maven.plugins:maven-plugin-plugin:3.5.1:helpmojo (generate-helpmojo) on project maven-pdf-plugin: Execution generate-helpmojo of goal org.apache.maven.plugins:mave

Re: [VOTE] Release Apache Maven Parent POMs version 32

2018-07-16 Thread Karl Heinz Marbaise
Hi, +1 from me. Kind regards Karl Heinz Marbaise On 15/07/18 20:32, Hervé BOUTEMY wrote: Hi, We solved 7 issues: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311250&version=12342723&styleName=Text Changes since the last release: https://gitbox.apache.org/repos/asf?p=mav

Re: Maven plugin development: Getting a Set<Artifact> of an declared and transitive dependencies

2018-07-16 Thread exabrial
Thank you Robert! That fixed the issue with getArticats(). I didn't see that option beforehand. On 2018/07/16 19:44:36, "Robert Scholte" wrote: > See > https://maven.apache.org/plugin-tools/maven-plugin-tools-annotations/index.html > > if you want the jars, set requiresDependencyResolution

[GitHub] asfgit closed pull request #13: [DOXIA-497] Fix rendering links and paragraphs inside tables

2018-07-16 Thread GitBox
asfgit closed pull request #13: [DOXIA-497] Fix rendering links and paragraphs inside tables URL: https://github.com/apache/maven-doxia/pull/13 This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As t

Re: Maven Plugin Development and the @Produces

2018-07-16 Thread Romain Manni-Bucau
Maven tries to limit that to jsr330 usage hoping it stays portable ( https://maven.apache.org/maven-jsr330.html). Probably just implement the api and register the class in guice/sisu or plexus (old way). Will avoid some headaches. Sisu-guice (the guice impl of maven) should support defining a name

Re: Maven plugin development: Getting a Set of an declared and transitive dependencies

2018-07-16 Thread Robert Scholte
See https://maven.apache.org/plugin-tools/maven-plugin-tools-annotations/index.html if you want the jars, set requiresDependencyResolution thanks, Robert On Mon, 16 Jul 2018 21:40:18 +0200, Romain Manni-Bucau wrote: Hi, GetArtifacts should work if you run it in the right phase. Le lun

Re: Maven plugin development: Getting a Set of an declared and transitive dependencies

2018-07-16 Thread Romain Manni-Bucau
Hi, GetArtifacts should work if you run it in the right phase. Le lun. 16 juil. 2018 21:19, exabr...@gmail.com a écrit : > Hey guys, > > Right now, I'm doing the following: > > ``` > ... > @Inject > private ProjectDependenciesResolver projectDependenciesResolver; > ... > final List scopes

Re: Maven Plugin Development and the @Produces

2018-07-16 Thread exabrial
I tried the @Provides annotation but it could not get it to supply a value. Do you have an example? On 2018/07/12 06:33:19, Romain Manni-Bucau wrote: > Hi Jonathan, > > you can use Guice in plexus components but not CDI. the cdi-api.jar is a > transitive leaked dependency and almost nothing is

Maven plugin development: Getting a Set of an declared and transitive dependencies

2018-07-16 Thread exabrial
Hey guys, Right now, I'm doing the following: ``` ... @Inject private ProjectDependenciesResolver projectDependenciesResolver; ... final List scopes = Arrays.asList(new String[] { "compile", "runtime", "test" }); final Set artifacts = projectDependenciesResolver.resolve(mavenProject, sc