我是 Grails 开发的新手,想建立一个新项目,所以我可以使用 Eclipse 作为 IDE,并使用 Maven 在我的 CI (Jenkins) 上构建它。这是我的环境:
- Java 1.6.0
- 圣杯 2.1.0
- Maven 2.2.1
- 带有 m2e 和 egit 插件的 Eclipse Juno
我使用了来自http://grails.org/doc/latest/guide/commandLine.html#antAndMaven的以下命令 :
mvn archetype:generate -DarchetypeGroupId=org.grails \
-DarchetypeArtifactId=grails-maven-archetype -DarchetypeVersion=2.1.0 \
-DgroupId=com.company.dep -DartifactId=project
mvn initialize
但是在 Eclipse 中将其作为 maven 项目导入后,出现了关于 slf4j 和 com.sun.tools 未找到以及生命周期阶段未映射的错误。
在 Eclipse 中运行它需要哪些步骤?