Tagged Questions
5
votes
2answers
3k views
Maven Snapshot Repository v/s Release Repository
This is a newbie Q, but
What is the difference between a
Snapshot Repository v/s Release
Repository?
This is with reference to setting up Repositories (like Artifactory, Nexus etc)
4
votes
4answers
394 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 ...
2
votes
1answer
143 views
How to stage a Maven release without creating scm tag?
Our current SDLC goes something like this:
Develop code & unit tests
Release to QA for system testing
Repeat steps 1 & 2 as required until QA is passed
Promote to UAT
Repeat steps 1 to 5 as ...
2
votes
2answers
304 views
Release of multiple projects with maven
We got common component C and 2 projects A & B. Each project depends on component C.
The problem is that version of C after release is 1.0 but A & B are still referring to version ...
2
votes
2answers
449 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
...
1
vote
2answers
66 views
Maven release process issues (Any alternative to release plugin)
I am working with Maven for the last 2 months. I think I understand it just enough but not yet sure :) I got the Snapshot build compiled, installed and deployed to our team repository.
So the plan ...
1
vote
2answers
105 views
Maven deploys to snapshot instead of release
I'm trying to release a project using maven but instead of releasing to the Releases repository it puts it in our Snapshots repo.
My pom looks like:
<project ...
1
vote
3answers
179 views
Create webapp war releases 'the maven way'
my webapp consists in mainly two artifacts, java-server.jar and js-client.war. Both are aggregated/overlayed and get additional property files for the target environment. Finally, i get the war file.
...
1
vote
2answers
366 views
Tagging sub-trunk directory when releasing with Maven (using SVN)
Here is my SVN structure :
trunk /
+- docs /
+- dev /
+- project-parent /
+- project-war /
releases /
I would like the Maven release plugin to tag /trunk/dev/ to ...
0
votes
0answers
10 views
Branching then tagging with the Release plugin
I'm learning how to use the Maven Release Plugin and I have a question with the process of tagging/branching. I'm working on a project called "test" version 1.0-SNAPSHOT. I'm ready for the release. I ...
0
votes
2answers
67 views
maven scm plugin - what is the url config-value?
Question re. the Maven scm-plugin:
http://maven.apache.org/scm/plugins/usage.html
Example, in pom.xml:
<scm>
...
0
votes
0answers
17 views
how to release to a hosted nexus from maven?
We have a nexus installed on one of our servers and I do not know how to make the maven to upload the built artifacts to there when I use the mvn release:perform.
I have the basic settings read on the ...
0
votes
2answers
169 views
Release with Maven, SVN and Hudson(jenkins)
I would like to do a "release" that has a slightly different meaning from the one that the Maven release plugin assumes.
I have a web project (that I would like to "release") that depends on various ...
0
votes
0answers
32 views
Can you use maven release plugin to create a maintainance branch after a release
I am aware that you can create a maintenance branch before releasing using
mvn release:branch -DbranchName=1.0.x
as suggested here: ...
0
votes
1answer
35 views
mvn release:perform generate a SNAPSHOT ?
I'm trying build a RELEASE version of an artifact, but for my surprise when I do a mvn release:perform, a SNAPSHOT version is being published in repository.
Is there some reasons for this behave?
...
0
votes
1answer
119 views
maven release plugin with github does not work in 2.2.1?
I am a bit confused because during my development i encountered a problem that was only solveable by downgrading the maven release plugin from 2.2.1 down to 2.0-beta-9.
Basically my project was using ...
0
votes
1answer
51 views
Do I have to use maven repository when I have svn @ sourceforge?
I'm a beginner I'm using M2eclipse, I've account for my project @ sourceforge. connection to sourceforge is established and I use SVN repository. Now I was introduced to MAVEN when I firstly tried to ...
0
votes
0answers
180 views
maven release:prepare fails to release pom.xml with patch version
I am not sure if I am doing something wrong here, or if there is a bug in maven-release-plugin. But when I try to release a version 1.2.1, maven creates a tag with the right version, but the version ...
0
votes
1answer
220 views
Branching and Releasing strategy
I found some people talking about a few branching strategies. So I thought I'll get some comments on that.
So the project was branched from trunk. Call it branch A. While the work is going on in ...
0
votes
0answers
287 views
Use Maven release plugin to move final WAR file to tomcat
Maybe I am using Maven the wrong way, but I would liek to do the follwoing:
I have a local (DEV) and a remote (PROD, in Internet) Tomcat running. My Code sits in a SVN repository on an intranet ...
0
votes
1answer
297 views
maven dependencies in profiles during release build
I have a maven module which has several dependencies that are contained in profiles. When preparing a release build using the release plugin (i.e. mvn release:prepare), the versions of those ...