Re: How to create a site/doxia plugin?

2018-07-03 Thread Hervé BOUTEMY
Hi Peter, IIUC, you want to create a JspWiki parser, to be able to write JspWiki markup by hand and let maven-site-plugin parse it to integrate into the html site. That's it? Then the sink part is not interesting to you: this would to output JspWiki format instead of html. I fear I did not

Re: after upgrade to maven 3.5.4 release plans fail when trying to upload source jar twice

2018-07-03 Thread Jim Sellers
Hi Karl. 1) when I comment out the maven-source-plugin and run "mvn clean install" I don't see any -sources.jar files in my local repo. 2) I tried it just with the execution part commented out, and I don't see any -sources jars again. I had expected to from your above comment. 3) I noticed that

Re: Wrong version ids in doxia-modules

2018-07-03 Thread Karl Heinz Marbaise
Hi Pete, On 03/07/18 22:43, Peter Nabbefeld wrote: Hello, I'm experimenting with a doxia module, using org.apache.maven.doxia/doxia-modules/1.8 as parent. When looking at the effective graph, I see every dependency with version 1.0-SNAPSHOT, though release version is 1.8, e.g.:    

Wrong version ids in doxia-modules

2018-07-03 Thread Peter Nabbefeld
Hello, I'm experimenting with a doxia module, using org.apache.maven.doxia/doxia-modules/1.8 as parent. When looking at the effective graph, I see every dependency with version 1.0-SNAPSHOT, though release version is 1.8, e.g.:     org.apache.maven.doxia     doxia-core    

Re: after upgrade to maven 3.5.4 release plans fail when trying to upload source jar twice

2018-07-03 Thread Jim Sellers
Hi Karl. I've created a minimal project. The git and nexus / repo info would have to be set in a settings.xml file, and the nexus repo would have to not allow overwriting releases. https://github.com/sellersj/hello-world-not-using-corp-parent This works for maven 3.5.3 but not 3.5.4 If you need

Re: after upgrade to maven 3.5.4 release plans fail when trying to upload source jar twice

2018-07-03 Thread Karl Heinz Marbaise
Hi, The issue looks a bit like: https://issues.apache.org/jira/browse/MNG-5359 On 03/07/18 21:04, Karl Heinz Marbaise wrote: Hi Jim, first thanks for the example project which helps a lot to find the real problem... So the issue is related to two things. First you have defined your own a

Re: after upgrade to maven 3.5.4 release plans fail when trying to upload source jar twice

2018-07-03 Thread Karl Heinz Marbaise
Hi Jim, first thanks for the example project which helps a lot to find the real problem... So the issue is related to two things. First you have defined your own a release profile which is ok so far... The problem is related to the definition of the maven-sources-plugin like this:

Re: repository element was not specified in the POM inside distributionManagement element or in -DaltDeploymentRepository=id::layout::url parameter ->

2018-07-03 Thread Mark Prins
On 30-06-18 16:39, Karen Goh wrote: Hi expert, I used maven build and run goal : deploy to see how my spring framework project run but I got the above error. There is this stackoverflow person which has similar problem as mine:

Re: No compiler is provided in this environment - how to stop this error ?

2018-07-03 Thread Karen Goh
On Sun, 6/24/18, Karl Heinz Marbaise wrote: Subject: Re: No compiler is provided in this environment - how to stop this error ? To: "Maven Users List" , jeffma...@jeffmaury.com Date: Sunday, June 24, 2018, 3:00 PM Hi, do you really want to

Re: How to create a site/doxia plugin?

2018-07-03 Thread Peter Nabbefeld
Hi Hervé, sorry for being unspecific - I want some basic support for JspWiki format. So far, I found https://maven.apache.org/doxia/developers/modules.html, but it's incomplete and outdated ("SinkFactory" was changed into an interface, "AbstractSiteModule" seems to no more exist). Kind

Re: How to create a site/doxia plugin?

2018-07-03 Thread Hervé BOUTEMY
Hi Peter, What do you call a Doxia plugin? I see misc interpretations: - a Doxia module [1], to support a new output format = a new Sink, see the currfent modules that provide Sinks (and not only parsers) [2] - a Skin [3], to have a web site that matches better your intent - a new Maven