使用 mvn release:prepare,是不是可以指示 Maven 在提交命令的子模块 pom 位置中使用正斜杠?

Posted

技术标签:

【中文标题】使用 mvn release:prepare,是不是可以指示 Maven 在提交命令的子模块 pom 位置中使用正斜杠?【英文标题】:With mvn release:prepare, is it possible to instruct Maven to use a forward slash in the submodule pom locations for the commit command?使用 mvn release:prepare,是否可以指示 Maven 在提交命令的子模块 pom 位置中使用正斜杠? 【发布时间】:2013-06-28 14:28:57 【问题描述】:

在 Windows 机器上使用 Maven 3.0.5,我试图从 Cygwin bash 提示符运行 mvn -X -B release:prepare,但失败了。以下是部分输出:

[INFO] Executing: cmd.exe /X /C "git commit --verbose -F C:\cygwin\tmp\maven-scm-24643703.commit pom.xml module1\pom.xml module2\pom.xml"

...

[ERROR] The git-commit command failed.
[ERROR] Command output:
[ERROR] error: pathspec '"module1\\pom.xml"' did not match any file(s) known to git.
[ERROR] error: pathspec '"module2\\pom.xml"' did not match any file(s) known to git.

如果我在将反斜杠修改为正斜杠之后手动运行命令(从 bash 提示符),它可以工作:

cmd.exe /X /C "git commit --verbose pom.xml module1/pom.xml module2/pom.xml"

我已经尝试修改根 pom 以使其自动发生:

<properties>
    <file.separator>/</file.separator>
    <fileSeparator>/</fileSeparator>
</properties>

我在命令行上尝试了各种选项:

-Darguments="-DfileSeparator=/"
-Darguments="-Dfile.separator=/"
-DfileSeparator='/'

有没有办法指示 Maven 在提交命令的子模块 pom 位置中使用正斜杠?

编辑:

在 Cygwin 下本地从源代码构建 Maven。从具有两个子模块的原型创建示例项目。重复mvn -B release:prepare,结果和之前一样:

[INFO] [INFO] BUILD SUCCESS
[INFO] [INFO] ------------------------------------------------------------------------
[INFO] [INFO] Total time: 3.316s
[INFO] [INFO] Finished at: Fri Jun 28 14:29:53 CDT 2013
[INFO] [INFO] Final Memory: 19M/223M
[INFO] [INFO] ------------------------------------------------------------------------
[INFO] Checking in modified POMs...
[INFO] Executing: cmd.exe /X /C "git add -- pom.xml module1\pom.xml module2\pom.xml"
[INFO] Working directory: C:\cygwin\home\don.branson\projects\example
[INFO] Executing: cmd.exe /X /C "git status"
[INFO] Working directory: C:\cygwin\home\don.branson\projects\example
[INFO] Executing: cmd.exe /X /C "git commit --verbose -F C:\cygwin\tmp\maven-scm-1306363489.commit pom.xml module1\pom.xml
module2\pom.xml"
[INFO] Working directory: C:\cygwin\home\don.branson\projects\example
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] example ........................................... FAILURE [6.972s]
[INFO] module1 ........................................... SKIPPED
[INFO] module2 ........................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 7.475s
[INFO] Finished at: Fri Jun 28 14:29:54 CDT 2013
[INFO] Final Memory: 8M/153M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.0:prepare (default-cli) on project example:
Unable to commit files
[ERROR] Provider message:
[ERROR] The git-commit command failed.
[ERROR] Command output:
[ERROR] error: pathspec '"module1\\pom.xml"' did not match any file(s) known to git.
[ERROR] error: pathspec '"module2\\pom.xml"' did not match any file(s) known to git.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

这是根 pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.example</groupId>
  <artifactId>example</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>pom</packaging>

  <name>example</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <scm>
    <connection>scm:git:file://../example.git/</connection>
  </scm>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <modules>
    <module>module1</module>
    <module>module2</module>
  </modules>
</project>

这是module1的pom.xml:

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.example</groupId>
    <artifactId>example</artifactId>
    <version>1.0-SNAPSHOT</version>
  </parent>
  <groupId>com.example</groupId>
  <artifactId>module1</artifactId>
  <version>1.0-SNAPSHOT</version>
  <name>module1</name>
  <url>http://maven.apache.org</url>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

编辑:

这是一个有同样问题的人。他的解决方案是使用 windows shell 而不是 bash。布莱:

http://www.theroundmeatball.com/making-maven-release-plugin-on-windows-with-git-gpg-and-github-to-work/

【问题讨论】:

你能显示完整的 pom 文件试图从哪里进行释放,因为你显示的命令看起来有点奇怪。 @khmarbaise - 我愿意,但我不能分享。有什么特别奇怪的地方吗?它与你看到的生成的命令有什么不同? 这看起来像是本地 Windows 和 Cygwin 命令的混合。如果为真,您希望将您的环境放在其中一个或另一个上以简化事情。 @AlG - 只有 Cygwin。 Maven 是决定调用 cmd.exe 的人 :(. 似乎有一个针对此问题的错误:jira.codehaus.org/browse/MRELEASE-581 【参考方案1】:

我只是手动执行 git 命令来解决它。

Maven 消息说明了它试图执行的内容,我手动执行了这个命令,更正了斜线。

然后我重新运行 maven 并得到第二个 git 命令,它也会失败。

我也是手动完成的,最后一次重新运行了 maven。

这不是很好,但至少它是一种手动解决方法。

【讨论】:

【参考方案2】:

我自己也遇到过这个。即使是最新的 2.5.3 版本插件也有这个问题。我的解决方法是从 https://git-scm.com/download/win 下载 Portable Git,然后将 ..../PortableGit/cmd 放在路径的首位。这有效地用 windows 版本替换了 cygwin git。在pom.xml 中,我明确要求提供 2.5.3 插件:

           <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-release-plugin</artifactId>
                   <version>2.5.3</version>
           </plugin>

【讨论】:

以上是关于使用 mvn release:prepare,是不是可以指示 Maven 在提交命令的子模块 pom 位置中使用正斜杠?的主要内容,如果未能解决你的问题,请参考以下文章

运行 mvn release:prepare 的 svn commit 问题

删除 mvn release:prepare 上的文件

这是 mvn release:prepare 的问题吗

在 release:prepare 和 release:perform 上激活配置文件

Maven 发布插件:release:prepare-with-pom vs -DgenerateReleasePoms

使用eclipse执行maven-release-plugin插件发布jar异常问题(.project)(Cannot prepare the release because you have loc