1

当我尝试在我的 Windows 7 Service Pack 1 64 位上构建 apache 滚轮时,我遇到了这种错误。

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:run (gen-db-scripts) on project roller-webapp: An Ant BuildException has occured: Exception thrown by 'generator.parse'. For more information consult the velocity log, or invoke ant with the -debug flag.
[ERROR] around Ant part ...<texen outputFile="README.txt" controlTemplate="control.vm" outputDirectory="F:\roller-trunk\app/target/dbscripts" templatePath="F:\roller-trunk\app/src/main/resources/sql" contextProperties="F:\roller-trunk\app/src/main/resources/sql/dbscripts.properties"/>... @ 5:261 in F:\roller-trunk\app\target\antrun\build-main.xml: F:\roller-trunk\app\target\dbscripts\db2\createdb.sql (The system cannot find the path specified)
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:run (gen-db-scripts) on project roller-webapp: An Ant BuildException has occured: Exception thrown by 'generator.parse'. For more information consult the velocity log, or invoke ant with the -debug flag.
around Ant part ...<texen outputFile="README.txt" controlTemplate="control.vm" outputDirectory="F:\roller-trunk\app/target/dbscripts" templatePath="F:\roller-trunk\app/src/main/resources/sql" contextProperties="F:\roller-trunk\app/src/main/resources/sql/dbscripts.properties"/>... @ 5:261 in F:\roller-trunk\app\target\antrun\build-main.xml

我怀疑这个outputDirectory="F:\roller-trunk\app/target/dbscripts" templatePath="F:\roller-trunk\app/src/main/resources/sql" ` 是问题,但我不知道如何修理它。我从命令提示符运行“mvn clean install”。

4

3 回答 3

0

我成功地在 Windows 7 机器上的当前 SVN 主干(5.2.0-SNAPSHOT)中构建了 Roller 源代码,没有错误。的输出mvn -version如下:

Apache Maven 3.3.3 (7994120775791599e205a5524ec3e0dfe41d4a06; 2015-04-22T20:57:37+09:00)
Maven home: c:\apache-maven-3.3.3
Java version: 1.8.0_45, vendor: Oracle Corporation
Java home: C:\Program Files\Java\jdk1.8.0_45\jre
Default locale: ja_JP, platform encoding: MS932
OS name: "windows 7", version: "6.1", arch: "x86", family: "dos"

您可以尝试使用相同版本的 JDK/Maven 构建上述输出吗?

更新

现在可以在没有此错误的情况下构建 Roller 的 GitHub 分发版。有关详细信息,请查看https://issues.apache.org/jira/browse/ROL-2086

于 2015-05-23T02:27:47.977 回答
0

GitHub 不存储 Roller 构建所需的空目录,如果应用了此补丁 ( https://github.com/apache/roller/pull/3 ),问题将得到解决。

我正在进行的 Roller 的 Github 分支,TightBlog,已经有了这个变化:https ://github.com/gmazza/tightblog 。但是 TightBlog 还不能正常使用。

于 2015-06-05T23:44:27.223 回答
-1

我相信这个错误是因为直接从 Github 版本中提取的。起初,我试图从 Github 中提取它,但我遇到了同样的问题。后来,我尝试直接从 SVN 主干中检出,构建过程没有问题。

我相信之前在http://comments.gmane.org/gmane.comp.java.roller.devel/5895也描述了这个错误。据说 Github 版本可能存在一些问题。

于 2015-05-25T11:55:21.440 回答