release « plugin « Maven/Ant Q&A

Home
Maven/Ant Q&A
1.Ant
2.artifact
3.dependency
4.deploy
5.Development
6.eclipse
7.glassfish
8.hudson
9.integration
10.jetty
11.junit
12.m2eclipse
13.module
14.netbeans
15.package
16.plugin
17.POM
18.repository
19.svn
Maven/Ant Q&A » plugin » release 

1. maven release plugin ignores releaseProfile    stackoverflow.com

i am using to profiles: development and production development should be active on default, production should be used when i am releasing. In my pom.xml i have:

[...]
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<configuration>
  <useReleaseProfile>false</useReleaseProfile>
  <goals>deploy</goals>
  <arguments>-Pproduction</arguments>
</configuration>
</plugin>
[...]
<profiles>
 ...

2. what is the difference between maven release and maven assemblies plugins?    stackoverflow.com

Question says it all, I believe. Please and thank you GC

3. Maven release plugin with profile-dependent submodules    stackoverflow.com

I am trying to perform a release using a multi-module maven project. My objective is to modify the version of all poms, and create a tag in the SCM, which is ...

4. How to customise the tag format of the Maven release plugin?    stackoverflow.com

In our SVN repo, we store tags like this:

trunk
    project_a
    project_b
branches
    project_a
        branch_x
   ...

5. Scripting responses for use in the Maven Release Plugin    stackoverflow.com

We are a SVN/Maven/Hudson shop. We are experimenting with using the Maven Release Plugin to help automate our very laborious tagging and releasing process. We are happy with what we are ...

6. maven release plugin with github does not work in 2.2.1?    stackoverflow.com

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 ...

7. Can you use maven release plugin to create a maintainance branch after a release    stackoverflow.com

I am aware that you can create a maintenance branch before releasing using

mvn release:branch -DbranchName=1.0.x
as suggested here: http://www.christophkiehl.com/automatically-create-releases-and-maintenance-branches-with-maven Is there an easy way to create one after releasing? eg ...

8. Does the maven release plugin work for branches?    stackoverflow.com

When I execute the maven release plugin from a branch that is in \branches\branchone it creates a tag for \branches I would like the plugin to tag just "branchone" but for some reason ...

9. Branching then tagging with the Release plugin    stackoverflow.com

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 ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.