Suppose I have tagged the release version of our project under $SVNROOT/project/tags/1.0. Suppose now that I need to create a branch from that tag, mark it as being a SNAPSHOT, and ...
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 ...
I develop in trunk and periodically tag "stable releases" with the maven release plugin. For example:
/trunk is MyProject 1.1-SNAPSHOT
creates the stable release
/tags/MyProject-1.1
Works fine, no problems, just perfect.
Sometimes I have to deploy ...
I am looking to migrate several projects that are using ANT to MAVEN2.
The current SVN structure of the projects is:
trunk/project1/src/com
trunk/project2/src/com
...
My plan is to make a new maven_migration branch and move the ...
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 ...
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 ...