The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
405 views

Reducing repository size in Mercurial

As my team works on a given project with the source in a Mercurial repository, the repository is obviously growing in size. As such, cloning a repository over the network becomes slower and slower. ...
7
votes
2answers
1k views

How to deploy SNAPSHOT with sources and JavaDoc?

I want to deploy sources and javadocs with my snapshots. This means that I want to automize the following command: mvn clean source:jar javadoc:jar deploy Just to execute: mvn clean deploy I ...
4
votes
4answers
425 views

When should mvn release be used in the project lifecycle?

To clarify the question : I am looking for established best-practices or a pro/con analysis of known practices by project lifecycle I mean : deploy to pre-integration, integration, QA, preprod and ...
4
votes
1answer
167 views

Is there a way to use maven to automate feature branch reintegration?

Say you have a project that uses maven and a subversion repository. It consists of quite a lot of modules. So far, development happened in trunk, but now feature branches are to be introduced. This ...
4
votes
2answers
932 views

How to handle maven versions in a multi module project?

I have a maven project infrastructure like this: /trunk/all/pom.xml /trunk/all/libs/lib1/pom.xml /lib2/pom.xml ... /trunk/all/projects/p1/pom.xml ...
4
votes
4answers
4k views

maven multi-module versioning

I have a multi-module project. parent POM (1.0-SNAPSHOT) |-- module1 (1.0-SNAPSHOT) |-- module2 (1.0-SNAPSHOT) `-- module3 (1.0-SNAPSHOT) When I execute mvn release:prepare it verify that parent ...
3
votes
0answers
96 views

maven-release-plugin and maven 3.0.3

I'm using the maven release plugin to perform the following with maven-3.0.3 mvn release:prepare Everything seems to be going fine except that when it creates the tag in SVN, it copies the previous ...
3
votes
2answers
170 views

Releasing with Maven

I recently released a maven project and could not stop thinking that the whole process is very complicated and error prone. Let us say I have an application which consists of 3 modules A, B and C, ...
3
votes
2answers
857 views

Hudson and maven-release-plugin

I'm using Hudson with the maven-release-plugin. As you may know, the maven-release-plugin builds project in 2 steps: release:prepare, then release:perform. How should I configure Hudson to execute ...
3
votes
2answers
885 views

Maven release plugin: specify java compiler version

I have this project made of multiple jars and war to make an ear. I build everything in snapshot and it works great. Then I made a release for every single project and saw that the jars and the war ...
3
votes
1answer
2k views

Maven release:perform without deploy and calling an external shell script

I am using the maven release plugin. Problem is simple: I don't want to do a deploy on release:perform. I actually want to execute a shell script that will do the deploy for me. So I have two things ...
3
votes
2answers
827 views

Maven - Error Releasing Code to GitHub (Hangs After Push)

I'm attempting to run the mvn release:prepare goal and it's hanging after the push. Any idea what I could be doing wrong? [INFO] [INFO] ...
3
votes
3answers
512 views

How can I supply Maven release prepare information without prompts?

I want to automate the execution of Maven release:prepare with Perl so that the user doesn't have to answer the prompts for version names etc. Are there a -D arguments that can be supplied so that no ...
3
votes
1answer
719 views

Using maven-release-plugin to tag and commit to non-origin

When I do a release of my project, I want to share the source with a wider group of people than I normally do during development. The code is shared via a Git repository. To do this, I have used the ...
3
votes
3answers
951 views

mvn release:perform automatically specify scm tag that includes release version

I would like to setup my maven release to run in batch mode, but I'm not a fan of the default scm tag ${artifactId}-${releaseVersion}. Instead, I'd like to simply tag it with ${releaseVersion}; ...
2
votes
3answers
79 views

Hudson Maven Release Subversion

I am trying now for almost 2 days to get the release plugin running with maven and hudson. I installed now a svn client(dont know why I needed to this as Hudson has a SVN plugin) and the plugin is ...
2
votes
1answer
51 views

Specifying the Date in the tag generated by the maven-release-plugin

Within our project we declare our SVN tags in the format: YYYY-MM-DD - v{project.version} [${environment}] eg 2012-01-16 - v1.0.1 [LIVE] Is it possible to achieve this with the ...
2
votes
1answer
647 views

How to configure a single Jenkins job to make the release process from trunk or branches?

I am currently enhancing the release process of our projects on Jenkins (1.430). Current release jobs Today, for one specific project, we have one job dedicated to the Release process. The complete ...
2
votes
1answer
500 views

Release Management - Maven, Bamboo and JIRA

I'd like to find the best way to manage releases using Maven 2, Bamboo 3.1 and JIRA 4.3. I've tried many things but I keep hitting dead ends due to bugs or missing functionality. My end goal is to ...
2
votes
2answers
124 views

Maven-release-plugin and builder-helper plugin

I guess i am missing something.. I want to make a release of my project. I added maven-release-plugin to my pom. In addition, i have another source code dir aside from java(call it gen-src). When i ...
2
votes
1answer
105 views

How do I run a Maven Plugin on all modules?

I have a custom plugin that I run on all our projects as part of the release:perform goal. We are just starting to use multi-module builds, and I notice that my plugin only runs at the top module. ...
2
votes
1answer
534 views

Using maven release plugin autoVersionSubmodules to increment Major version

I'm using the maven release plugin on hudson with autoVersionSubmodules set to true to automatically increment the development version in the poms. I'm wondering if there is a way to make the plugin ...
2
votes
1answer
356 views

How to get a Maven release to work with git?

Trying to release, I always get this: [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ...
2
votes
2answers
491 views

Maven + Mercurial: Error while executing command tag

I want to release a new version of my project using the Maven-Release-Plugin. I get the following error, though: [INFO] Tagging release with the label softsmithy-lib-v0.1... ...
2
votes
1answer
273 views

Maven Error: Plugin's descriptor contains the wrong version

I'm trying to release a project with a custom plug-in dependency. And maven throws an error saying, [INFO] [INFO] Internal error in the plugin manager getting plugin ...
2
votes
2answers
1k views

Override Maven plugin configuration defined in pluginManagement from the command line

The POM that my project inherits contains some <pluginManagement> for the release plugin that specifies some additional arguments. My question is: Is there a way to override the arguments ...
2
votes
1answer
1k views

How to setup multi-module maven project with proper release and version structure

I could not find the best practice for my multi-module maven project,in terms of versioning, release and osgi bundles, First of all Versioning and relase. my project has 5-6 sub modules with 200+ ...
2
votes
2answers
483 views

How to customise the tag format of the Maven release plugin?

In our SVN repo, we store tags like this: trunk project_a project_b branches project_a branch_x branch_y project_b tags project_a 1.0 1.1 ...
2
votes
2answers
1k views

Maven release plugin fails : source artifacts getting deployed twice

We are using the maven release plugin on hudson and trying to automate the release process. The release:prepare works fine. When we try to do the release:perform , it fails because it tries to upload ...
2
votes
3answers
909 views

How can I make Hudson automatically build & install release artifacts, rather than just snapshots?

I'm developing several mavenised projects on my laptop, and periodically pushing to github. I've set up a private hudson server in the cloud that polls the git repositories for updates, and thus ...
2
votes
2answers
329 views

merging changes from a maven relase branch yields conflicts due to changed versions in poms

following standard practice, I have an svn trunk for feature development, and a forked-off branch for building releases. The branch has been created using the maven release plugin, which is also used ...
2
votes
2answers
935 views

Release problems with Nexus + Maven + Hudson

When using the release plug-in for Maven on Hudson(1.368), I am getting an error that my distributionManagement section is missing during the deployment phase to our Nexus Maven Repository Manager. If ...
2
votes
1answer
1k views

Does maven-release-plugin push tags to remote Git repository?

When using the maven-release-plugin with Git, mvn release:prepare happily tags the release in the local repository. I'd expect mvn release:perform to push the tags to the remote repository, but this ...
2
votes
1answer
1k views

why does maven release plugin allow for SNAPSHOT version in dependency managment?

We have 1 company parent pom. This uses dependencyManagement to manage the versions for all the dependencies of all the artifacts used. What is alarming, is that SNAPSHOT versions can be defined ...
1
vote
1answer
14 views

How to do mvn release:prepare in flat structure projects?

I have a multi-module flat maven project, when I run mvn release:prepare it returns with following error: svn: '/parent/path' is not a working copy I have found that this is known issue with flat ...
1
vote
1answer
32 views

Maven multiple module conflict

<module>APP_1</module> <module>web_1</module> <module>service_1</module> <module>schema_1</module> <module>APP_2</module> ...
1
vote
2answers
41 views

Maven for multiple modules

How do I run selected modules using parent pom in Maven like I have <module>APP_1</module> <module>web_1</module> <module>service_1</module> ...
1
vote
1answer
34 views

determine newest svn tag from hudson for deploy

We use Subversion for source control along with Maven for dependency management/ release preparation and Hudson as the CI server. The maven release prepare does the release tagging and creates a new ...
1
vote
0answers
33 views

maven release plugin with parameterized version

is it possible to use the maven release plugin with a multi-module project, where some of the inter-module dependencies are specified using a parameter from the parent pom? When I try to call ...
1
vote
1answer
39 views

Maven Implementation

Hi I am implementing on of my ant project into maven. I have one parent project which is creating a EAR file. one web project and 1 service and 1 schema project. I have shared libraries with .EAR ...
1
vote
1answer
59 views

How can I get maven-release-plugin to skip my tests?

How can I get the maven-release-plugin to run without triggering the tests? I have tried -Dmaven.test.skip=true and -DskipTests and -DpreparationGoals=clean ...yet none work. Yes, I ...
1
vote
1answer
84 views

Maven multi module project release management

I have a Maven project that looks like the following: - enterprise-pom - commons - core - domain - dao - search - importer-batch-app - processor-batch-app - systems - ...
1
vote
1answer
68 views

Automating Maven artifact releasing

For a project with a large number of Maven artifacts (both internally generated as well as external ones), how does one go about automating the releasing of the internally controlled artifacts as part ...
1
vote
2answers
49 views

Is there any project layout that satisfies mavens release plugin?

I have a multi-module project and can't perform a release. I tried these layouts: svnroot/trunk/parent /module1 /module2 and svnroot/parent/trunk svnroot/module1/trunk ...
1
vote
1answer
93 views

Maven release:perform error with assembly plugin (Multi module project)

I have a maven multi-module project. In one module, we create 2 ZIP files with the maven-assembly-plugin. The configuration for this: <configuration> ...
1
vote
1answer
44 views

maven-release-plugin: Is the folder relevant in the scm section of the pom.xml?

We're using a standard svn layout (/branches/x.y, /tags, /trunk) and mvn release (i.e. maven-release-plugin) to perform releases, from the branches. We usually try to make sure the section follows ...
1
vote
1answer
262 views

Unable to Deploy war using maven 3.x

I am trying to deploy my web-application to tomcat using maven 3.x here is the snap shot of the pom.xml file <project xmlns="http://maven.apache.org/POM/4.0.0" ...
1
vote
2answers
64 views

Maven common parent with custom reporting plugin configuration

My team has a common parent project with a module containing several reporting plugin configurations (e.g. checkstyle and findbugs, similar to Checkstyle's multimodule configuration, but in a separate ...
1
vote
1answer
253 views

Problem release maven

I have a problem with the release plugin for maven. I use maven 2.2 and maven-release-plugin 2.1 When I run the next command line, the release plugin create tag in svn but nothing is into the tags. ...
1
vote
2answers
466 views

How to override maven-release-plugin config in one child module

I have a multi-module maven build where one of the child modules requires an extra goal to be executed as part of a release. But it looks as though any configuration of the maven-release-plugin in the ...

1 2 3