Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

At the moment we're going to migrating all of our cvs projects to git. Our custom script is using the git converter and everything is fine. Now i would like to incorporate the automated replacement of the scm part properties with the new values.

Is there a plugin similar to org.codehaus.mojo:versions-maven-plugin but appling to the scm part?

share|improve this question

2 Answers

up vote 1 down vote accepted

No, but it would be a trivial plugin to implement.

Just define search and replace patterns:

/**
 * @parameter expression="${project}"
 * @readonly
 */
private MavenProject project;

/**
 * @parameter expression="${searchPattern}"
 * @required
 */
private String searchPattern;


/**
 * @parameter expression="${replacePattern}"
 * @required
 */
private String replacePattern;

/**
 * @component
 */
private ModelWriter modelWriter;

public void execute(){
    final Model model = project.getModel();
    model.getScm().setConnection(
            model.getScm()
            .getConnection()
            .replaceFirst(searchPattern, replacePattern));
    // do the same for scm.getDeveloperConnection()

    modelWriter.write(
        new File(project.getBasedir(),"pom.xml"),
        Collections.<String,Object>emptyMap(), model);
}
share|improve this answer
1  
thanks, works like a charm. I only changed one thing, i opted for project.getOriginalModel() instead. With getModel() my pom was replaced with something that looked like the effective pom. – Olivier Heidemann Apr 20 '11 at 10:08
@Olivier good call! you are right of course – Sean Patrick Floyd Apr 20 '11 at 10:13

No there is no plugin for this kind of purpose. (May be someone else knows one?)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.