Same snapshot deploy number for entire build - possible

2019-09-11 Thread Dan Tran
Hello Maven Users and Development Team Currently, artifact deployed as snapshot at Maven repository has the following format artifactId-version-timestamp-NN where NN auto-incremented at each maven module and the number varies Is there a way to use same snapshot NN for the entire multi-modu

[ANN] Maven for Data Beta

2019-09-11 Thread Sebastian Hellmann
Dear all, we developed a Maven for Data. It is still beta, but we already use it productively to publish DBpedia's data (https://en.wikipedia.org/wiki/DBpedia, https://wiki.dbpedia.org/) While I attached a lot of specific information about the data and management part below, I would like to

How to add test-jar and jar as dependency in a maven multimodule project?

2019-09-11 Thread Debraj Manna
I have a maven multimodule project of the form - main - storage - storage-config - storage-utils - storage-common - tools I have a class `com.vnera.storage.config.Embedded.java` residing under test folder in `storage-config` which I want to use in `storage-utils` under `test`

Re: Register a Mojo from an extension

2019-09-11 Thread François Guillot
Found the problem I needed to export my package from my extension.xml On 2019/09/11 11:00:41, François Guillot wrote: > Hi,> > > I have a custom maven extension, that contains an EventSpy as its entry> > point.> > I would also like to have several Mojo implementations in my extension jar,> > and

Register a Mojo from an extension

2019-09-11 Thread François Guillot
Hi, I have a custom maven extension, that contains an EventSpy as its entry point. I would also like to have several Mojo implementations in my extension jar, and make them available for consumption by users, as long as they apply the extension. I have a simple HelloWorldMojo, and a corresponding