代码之家  ›  专栏  ›  技术社区  ›  lindelof

如何使用Maven从SVN标记生成分支?

  •  3
  • lindelof  · 技术社区  · 14 年前

    假设我已经将我们项目的发布版本标记为 $SVNROOT/project/tags/1.0 . 假设现在我需要从该标记创建一个分支,将其标记为 SNAPSHOT ,并更新 scm 配置。

    我试过了 release:prepare 目标如下:

    $ svn co $SVNROOT/project/tags/1.0 project-1.0
    $ cd project-1.0
    $ mvn release:branch -DbranchName=project-1.0.X -DupdateBranchVersions=true -DupdateWorkingCopyVersions=false
    

    $SVNROOT/project/tags/1.0 project-1.0 路径(这是完全正确的——我们不允许提交到标记中)。

    从我签出标签的目录运行这个。我得到的确切错误如下:

    [INFO] Executing: /bin/sh -c cd xxx && svn --non-interactive commit --file /tmp/maven-scm-28755080.commit --targets /tmp/maven-scm-535803351230252749-targets
    [INFO] Working directory: xxx
    org.apache.maven.shared.release.scm.ReleaseScmCommandException: Unable to commit files
    Provider message:
    The svn command failed.
    Command output:
    svn: Commit failed (details follow):
    svn: 'pre-commit' hook failed with error output:
    you do not have the rights to access this file: xxx/tags/xxx. 
    
    
            at org.apache.maven.shared.release.phase.ScmCommitPhase.checkin(ScmCommitPhase.java:133)
            at org.apache.maven.shared.release.phase.ScmCommitPhase.execute(ScmCommitPhase.java:109)
            at org.apache.maven.shared.release.DefaultReleaseManager.branch(DefaultReleaseManager.java:379)
            at org.apache.maven.shared.release.DefaultReleaseManager.branch(DefaultReleaseManager.java:350)
            at org.apache.maven.plugins.release.BranchReleaseMojo.execute(BranchReleaseMojo.java:133)
            at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:569)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:539)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:284)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180)
            at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328)
            at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
            at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
            at org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
            at java.lang.reflect.Method.invoke(Method.java:616)
            at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
            at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
            at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
            at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
    [INFO] ------------------------------------------------------------------------
    [ERROR] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Unable to commit files
    Provider message:
    The svn command failed.
    Command output:
    svn: Commit failed (details follow):
    svn: 'pre-commit' hook failed with error output:
    you do not have the rights to access this file: xxx/tags/xxx. 
    
    4 回复  |  直到 14 年前
        1
  •  4
  •   VonC    14 年前

    你在哪里执行的命令 mvn release:branch ?

    mentioned in this thread :

    插件doco指定的是 这个 release:branch 目标应该是 从签出位置调用 revision/tag 你想分店吗 从 tags/<my_release_version> ).

    我使用以下命令行创建了一个维护分支( branches/myapp-1.3.1 tags/myapp-1.3 ):

    mvn release:branch -DbranchName=myapp-1.3.1 -DupdateBranchVersions=true
    -DupdateWorkingCopyVersions=false
    

    这个 -DupdateBranchVersions pom.xml -不是scm版本。

    如果为true,它将提示输入版本,默认为标记版本的快照,这可能是您想要的,也可能不是您想要的。

    另请参见 this thread

    首先,您需要从标记签出的工作副本开始 .

    然后使用插件将分支装箱,并将工作副本切换到分支。

    • 从标记复制到新分支
    • 将工作副本切换到新分支(或从新分支签出工作副本)
    • 更新pom以使用新分支的url-将更新提交到pom
        2
  •  2
  •   Asgard    12 年前
    mvn release:branch
       -DbranchName=${project.artifactId}_${project.version} 
       -Dusername=${username} 
       -Dpassword=${passwd} 
       -DupdateBranchVersions=true 
       -DupdateVersionsToSnapshot=true 
       -DremoteTagging=false 
       -DsuppressCommitBeforeBranch=true 
       -DupdateWorkingCopyVersions=false
    

    运行时,Maven将提示在分支中使用的版本。我提供了1.5.0-azuresupport-SNAPSHOT。由于autoVersionSubmodules设置为true,Maven版本将自动为所有子模块使用此版本,因此也会将所有内部项目依赖项更新到该版本。

    默认情况下,Maven Releases创建对当前工作副本的中间提交。我不确定原因,但我认为这是因为一些风投不支持分支/修改工作副本标记。此参数确保不会对工作副本进行中间提交。

    -DupdateBranchVersions=真

    -DupdateWorkingCopyVersions=假

    分支时,可以为当前工作副本定义新版本,也可以为新分支定义新版本,或者两者都定义。正如这里设置的,工作副本将被单独保留,插件将为分支请求一个新版本。

    这里已经解释了所有的-D参数 http://startbigthinksmall.wordpress.com/2011/11/29/create-branches-with-maven-release-plugin-svn/

        3
  •  0
  •   Pascal Thivent    14 年前

    Create a Branch :

    默认情况下,新分支中的POM 与本地版本保持相同 增加到下一个版本。如果 你想在新版本中更新版本吗 分支,而不是在工作副本中, 跑步:

    mvn release:branch -DbranchName=my-branch -DupdateBranchVersions=true -DupdateWorkingCopyVersions=false
    

    注: 从标记创建分支

    然而,似乎是 那就是失败和抱怨。所以我想知道:

    • 如果暂时禁用此挂钩会发生什么
        4
  •  0
  •   Laird Nelson    13 年前

    release:branch 目标提交到标签,这是一个 unconscionable bug