The maven-release-plugin is used to create releases with Maven. The release plugin will automatically create tags in the VCS etc.
0
votes
0answers
9 views
How to continue the maven release:perfom from the failed point
Can u please any one suggest how to continue the maven release:perform from the failed point.
Since the some of the jars got uploaded in the nexus. We need to continue the build fromt he failed ...
0
votes
1answer
5 views
If Maven releae:prepare fails, how to continue from the failed point?
Can any one please suggest how to continue the maven release:prepare from the point which got failed?
I tried with the resume command, but it is not continues from the failed point.
Thanks in ...
0
votes
1answer
5 views
Maven release plugin throwing Hostname Not found exception?
I am trying to release a project in jenkins and getting a host not found exception.
Caused by: java.lang.RuntimeException: java.net.UnknownHostException: XXXXXXXXXXXXXXX: nodename nor servname ...
0
votes
1answer
19 views
How to build apk in release mode using maven
Hey I am having a hard time building and signing apk in release mode. I am able to create the apk using maven but when I try to upload it, Google playstore says that I need to build in release mode.
...
2
votes
0answers
31 views
Maven Release Plugin - prepare creates tag of Snapshot version instead of release version
I have following project structure:
framework
framework-parent-pom
framework-something
...
In the pom.xml of framework-parent-pom I have defined following plugin:
<plugin>
...
0
votes
0answers
17 views
Adding the scm tag element to the release-pom.xml
When performing a Maven release using the maven release plugin from Jenkins
-Dresume=false release:prepare-with-pom release:perform -Dmaven.scm.provider.cvs.implementation=cvs_native
It correctly ...
0
votes
0answers
24 views
Create project folder under Maven Release Branch
SUMMARY:
What is the best way to create an SVN branch from a Tag created by mvn release:* when the branch needs to live at Repo/branches/BRANCH_NAME/PROJECT_NAME/pom.xml and we want our pom.xml in ...
0
votes
2answers
48 views
Maven Release: Prepare/Perform after Rollback incorrectly succeeds with wrong content
We use Maven with Subversion internally. We also use Maven's Release plugin. We noticed the issue described below when running through the following (correct, I presume) steps.
1. We run ...
2
votes
0answers
73 views
Running Maven release via bash or groovy scripts
I'm wondering are there any example groovy or bash scripts out there for running a Maven release.
We run a mixture of mvn versions and release plugin commands as part of the release process.
Any ...
1
vote
0answers
52 views
Maven Release Plugin with Svn:Externals and a multi-module project
Given the following sample multi-module project:
aggr/pom.xml (Version 1.0-SNAPSHOT)
aggr/parent/pom.xml (Version 2.0-SNAPSHOT)
aggr/app/pom.xml (Version 3.0-SNAPSHOT)
...
0
votes
1answer
35 views
maven scm - Does maven creates tag automatically?
I have below configurations in place -
<scm>
<connection>scm:svn:http://example.com/tags/MyProject/MyProject-0.1</connection>
...
0
votes
0answers
56 views
maven-release-plugin : exclude target directory for modifications
I'm looking for a way to exclude the 'target' directory modifications during the maven release process. I tried below but it didn't work.
<configuration>
<checkModificationExcludes>
...
9
votes
2answers
164 views
Maven: Bind plugin execution to the execution of another plugin, not to a lifecycle phase
Note regarding the accepted answer: I accepted the answer because of strong circumstantial evidence. Nonetheless, this is circumstantial evidence, so take it with a grain of salt.
How can I have a ...
0
votes
1answer
32 views
Maven build fails at site default-deploy
I have been struggling to fix my maven build issue from last 2 days with no success almost. can you please help me on this -
I have a parent pom.xml which looks like
<distributionmanagement>
...
0
votes
1answer
61 views
Adding SVN arguments in maven-release-plugin
During a mvn release:prepare, maven-release-plugin needs to make some commits (tag and new poms).
I need to be able to add arguments to this SVN command without changing anything but the pom.xml ...
0
votes
0answers
179 views
Maven release:prepare : Cannot prepare the release because you have local modifications
I'm facing a problem with continuum's release:prepare phase which fails in scm-check-modifications step with error :
[ERROR] org.apache.maven.shared.release.ReleaseFailureException:
Cannot ...
0
votes
1answer
48 views
grails release plugin 3.0.0 unresolved error
I was trying to run maven-install to put my plugin in the local maven cache, but it gave me unresolved dependencies error: #release;3.0.0: java.text.ParseException: inconsistent module descriptor ...
1
vote
1answer
41 views
How to run maven site along with normal install/package goals
We are trying to generate change log and some other reports using maven. We are using the changelog plugin and site plugin. But We generate the report using the :
mvn clean package site command. Is ...
0
votes
0answers
30 views
Jenkins fails when executing release over https
I am trying to automate a build and deploy process in Jenkins. I execute a mvn release:prepare -B.
The process checkout the code and builds it from my repo ...
0
votes
2answers
105 views
Passing arguments to Maven release build
I'm trying to release a library using Maven and perform a site-deploy to sourceforge (I have create an interactive shell first). The release is done by a Jenkins job (using the Maven Release Plugin ...
0
votes
0answers
42 views
Subversion password timeout doesn't play nicely with maven release plugin
We are using the maven release plugin to do a multimodule build of some artifacts stored in a subversion repository. We have the following constraints in our build environment:
The subversion server ...
0
votes
1answer
211 views
Jenkins / Maven Release Plugin (cascade release)
I've got a bunch of projects with enough dependencies that the thought of clicking 'Perform Maven Release' and typing in my SVN username/password on each dependent manually, bottom up, brings on a ...
0
votes
1answer
200 views
Maven release:prepare fails with “scm connection or developerConnection must be specified”
I'm trying to prepare a release of my maven project with "mvn release:prepare" but it fails with the following error:
Caused by: org.apache.maven.plugin.MojoFailureException: Missing required ...
0
votes
0answers
29 views
Error in deploying liferay maven project
I have created a simple liferay portlet using maven. But later I found out a problem in my pom.xml file.
How can I overcome this problem. Because of it I could not be able to deploy the portlet. Any ...
1
vote
1answer
56 views
Terminology shift with maven-release-plugin
Usually developers say that we make build, than deploy to servers in different environments (integration, test, production). Deployment to production environment is release.
Now with Maven and ...
2
votes
2answers
81 views
maven 3: Accessing version of “root” corporate POM
Using Maven 3.0.4.
I am tasked with providing a corporate parent POM for our organization. My team will provide support for questions or issues developers have when using this POM. Often they will ...
0
votes
1answer
106 views
How to use Maven Release Plugin with Multiple Maven Projects
I'm using Maven 3.
I have multiple maven projects, namely: the 'data model', the 'service', and the 'presentation', split into 3 different projects. They are configured separately (ie. not using ...
2
votes
2answers
53 views
Good approach of a maven project design or antipattern design
Context:
I have a multimodules maven project that looks like:
Root ---- ModuleA
ModuleB
ModuleC
ModuleD
.......
They are around 25 modules under the Root:
A few of them ...
1
vote
1answer
38 views
How to avoid uploading directories into the SCM while executing 'maven-release-plugin:prepare'
When releasing a maven project, the 'maven-release-plugin:prepare' goal will upload the tag version into the SCM.
1/ Does 'maven-release-plugin:prepare' use a specific plugin to execute the upload ...
1
vote
1answer
106 views
Multi module maven project release with git on Windows
I configured maven2 release plugin in pom.xml for a multi module maven project. The project is located in a single git repo. Releasing process does not work on Windows.
Under git bash I always get ...
1
vote
0answers
130 views
Jenkins maven release job to trigger downstream parameterized job
I'm using the jenkins maven-release plugin to tag, package and perform a release.
This is working fine.
The plugin asks for:
the version of the release (parameter releaseVersion of the release ...
1
vote
2answers
102 views
Maven release: next development version in batch mode
I have configured a Jenkins job to release my maven project automatically. This is done by using the following: mvn --batch-mode clean release:prepare release:perform
In batch mode the release version ...
0
votes
3answers
71 views
Lost tags in git
I am facing a problem with git tags when using the maven release-plugin. We have turned off the automatic push to git during mvn release:perform, and the following is done to build a new release:
...
0
votes
1answer
409 views
How do I release with BitBucket+Git+Maven
I have specified the following SCM tags in my pom.
However when I do a maven release:prepare the tag created has a version 1.0-SNAPSHOT instead of 1.0
Any ideas?
<scm>
...
0
votes
1answer
160 views
Jenkins Git Release Failure
I'm trying to incorporate Jenkins Maven Release plugin with Git and the job is failing because it can't find the git executable.
My git repo is setup with ssh and I can execute the Git command on ...
0
votes
0answers
12 views
PluginVersionResolutionException in maven
In my system previously C:\Users\abc after changed as C:\Users\xyz now the problem while running the maven with "mvn clean install" it rises exception as LocalRepositoryNotAccessibleException,it takes ...
0
votes
1answer
97 views
mvn release:prepare doesn't work using maven 3
My JAVA_HOME is properly set up to /usr/local/java/jdk1.7.0_01
$echo $JAVA_HOME
/usr/local/java/jdk1.7.0_01
$sudo update-alternatives --config java
There are 3 choices for the alternative java ...
1
vote
1answer
54 views
Update version properties during Maven release prepare
How do I update properties during a mvn release:prepare
My pom.xml looks like this:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
0
votes
1answer
127 views
Maven: How to pass command-line arguments from release:perform to deploy?
When I invoke release:peform on my project. it invokes deploy which in-turn invokes gpg. I'd like to pass the gpg passphrase into the process using a system property or environment variable but ...
0
votes
1answer
110 views
Maven release goals binding
I'd like to write a redmine plugin to update the version of some projects when they are released. To avoid manual steps, I'd like to bind to some of the release plugin execution goals. Typically, I ...
1
vote
1answer
203 views
Clearcase with Maven Release plugin in Jenkins how should it work?
I'm not sure how maven release plugin works with clearcase. To clearify How should this maven work in clearcase.
Jenkins is building on branch test_5.0.0, in jenkins there is a job called test_5.0.0 ...
0
votes
0answers
108 views
Maven release plugin doesn't properly deploy project to Artifactory
I have a multi-module maven project with WAR, JAR(Applet). Applet built using maven-webstart-plugin, like this
<groupId>org.codehaus.mojo</groupId>
...
1
vote
1answer
119 views
maven release plugin hanging
I'm trying to release a CVS project with the mvn release plugin.
I've succeeded with mvn release:prepare but when I run release:perform it hangs due to what seems to be a leading slash on the CVS ...
0
votes
0answers
88 views
maven release plugin release.properties file contains unencrypted password
I'm running the maven release plugin (org.apache.maven.plugins:maven-release-plugin:2.3.2) and noticed that the password to the scm is saved in clear text in the release.properties file when passed in ...
0
votes
3answers
136 views
Jenkins Tag After Maven Build
I have a multi-module-maven project.
The jenkins job pipe is like that in my case:
Injecting environment variables for variable versioning
Check out from cvs
Edit Version.properties file of my ...
1
vote
1answer
393 views
Updating Versions using maven-release-plugin
I am using maven 3.0.4 in combination with cvs and jenkins.
I have a multi-module project with a main pom and some modules.
For a correct versioning i set some environment variables in jenkins.
The ...
0
votes
1answer
199 views
How to pass maven command-line arguments to a inline Groovy script
I'm using the maven-release-plugin to release some artifacts. During the release:perform goal I would like to run a inline Groovy script which use my SCM credentials to proceed some tasks.
This is a ...
0
votes
1answer
66 views
maven-invoker doesn't call install on dependency
i have a problem in my maven build process. there is a pom file which uses the maven-invoker-plugin to execute different tasks:
<execution>
<id>createWebstartApps</id>
...
1
vote
1answer
225 views
When using maven-release-plugin, why not just detect scm info from local repo?
As far as I am aware, in order to use the maven-release-plugin, you have to drop in an scm section into your POM file. E.g.:
<scm>
...
0
votes
1answer
331 views
Maven release and versions maven plugin
What is the numbering/versioning strategy for dependencies when doing snapshots/releases?
A team of 15 developers,20 Maven parent projects = total 70+ POMs including child module POMs. Currently ...

