Re: maven release process and Integration test artifact version tracking

2021-04-23 Thread Enrico Olivelli
Zos, you can also use preparationGoals and completionGoals in order to update any other file that it is not in the pom.xml file https://maven.apache.org/maven-release/maven-release-plugin/prepare-mojo.html This is an example of usage in Apache ZooKeeper project:

Re: maven release process and Integration test artifact version tracking

2021-04-23 Thread Benjamin Marwell
Hi Zos, you probably want to write @project.version@ for your artifact. It will get replaced with the version number of the enclosing module. It is listed in the usage page (as a side note): https://maven.apache.org/plugins/maven-invoker-plugin/usage.html Here is a random example of one of

maven release process and Integration test artifact version tracking

2021-04-21 Thread Zos ROTHKO
Hello Maven's users I have a problem about tracking the new snapshot version of an jar artifact within the integration test running the maven-invoker-plugin. Each integration test project is using the snapshot version of the jar artifact as a runtime dependency of a 3rd party maven plugin.