maven-exec-plugin

2013-06-06 Thread virg g
Hi, I am having a problem in using maven-exec-plugin. I have requirement that i need to use SVN MOVE command to rename labels. Since SCM does not support MOVE svn tags/labels i am using maven-exec-plugin to rename svn tags with required arguments including svn username and password. The problem i

Maven release plugin

2013-06-06 Thread Markos Fragkakis
Hi, I am using the Maven release plugin and I am trying to make a release. When I am on master (I am using Git) I have SNAPSHOT versions for both my project (multimodule) and also for my dependencies (also multimodule). Suppose I want to make a tag from master (skipping the creation of a branch)

Re: Maven release plugin

2013-06-06 Thread Russell Gold
Hi Markos, You need to release your dependencies first (to create the non-snapshot versions) and then update your project POMs to refer to the released versions. Then you can release your main project. It is only when the dependencies are themselves modules in your project and will be released

Re: maven-exec-plugin

2013-06-06 Thread Wolf Geldmacher
On 06.06.2013 11:48, virg g wrote: Hi, I am having a problem in using maven-exec-plugin. I have requirement that i need to use SVN MOVE command to rename labels. Since SCM does not support MOVE svn tags/labels i am using maven-exec-plugin to rename svn tags with required arguments including svn

Maven versions plugin: update property to specific value possible?

2013-06-06 Thread Markos Fragkakis
Hi, I have found the mvn versions:update-properties target. mvn versions:update-properties -DincludeProperties={dependency1.version} However, the value being set is the last version for the specific dependency. Is it possible to specify the value for that property? i.e. something like the

Re: Maven versions plugin: update property to specific value possible?

2013-06-06 Thread Stephen Connolly
in a profile you could define the configuration for the plugin and specify the `properties` (see http://mojo.codehaus.org/versions-maven-plugin/update-properties-mojo.html#properties) and then reference another property to define the range of valid values. really rather hacky if you ask me...

Re: create manifest with jars in multiple directories?

2013-06-06 Thread Robert Scholte
See http://maven.apache.org/shared/maven-archiver/ and http://maven.apache.org/shared/maven-archiver/examples/manifestEntries.html I'm not sure if it'll work Class-Path.../Class-Path but it's worth trying Robert Op Thu, 06 Jun 2013 00:05:11 +0200 schreef Russell Gold

RE: maven-exec-plugin

2013-06-06 Thread Martin Gainty
setup a ssh repository in distribution-management http://maven.apache.org/plugins/maven-deploy-plugin/examples/deploy-ssh-external.html then you can 'pull' the necessary SSH artifacts by referencing them inside the build extension Martin Gainty __