0

我正在使用 AppFuse,我想创建一个多模块项目。我尝试遵循AppFuse 快速入门指南,因此我使用以下命令创建项目:

mvn archetype:generate -B -DarchetypeGroupId=org.appfuse.archetypes -DarchetypeArtifactId=appfuse-modular-jsf-archetype -DarchetypeVersion=2.2.1 -DgroupId=com.mycompany -DartifactId=myproject -DarchetypeRepository=http://oss.sonatype.org/content/repositories/appfuse

然后我收到“BUILD SUCCESS”消息,但在运行以下命令后(用于运行应用程序):

Path/myproject/web ---> mvn jetty:run

我遇到了这个错误:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4:46.317s
[INFO] Finished at: Mon Jun 10 11:33:50 PDT 2013
[INFO] Final Memory: 10M/95M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project myproject-web: Could not resolve dependencies for project com.mycompany:myproject-web:war:1.0-SNAPSHOT: Could not find artifact com.mycompany:myproject-core:jar:1.0-SNAPSHOT in appfuse-snapshots (http://oss.sonatype.org/content/repositories/appfuse-snapshots) -> [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/DependencyResolutionException

不幸的是,我在 ubuntu 13.04 和 win 8 中都遇到了这个错误。

我应该如何解决?

4

1 回答 1

1

正如您所说,您正在使用模块化 appfuse 应用程序。

在 appfuse 模块化应用程序中存在两个模块:coreweb。Web 模块依赖于核心模块。

所以你应该首先安装核心模块。在您的核心模块目录中尝试此代码:

mvn install
于 2013-06-10T08:27:29.303 回答