从 Maven 原型创建 grails 项目
当我尝试使用原型创建 Mavenized Grails 1.3.6 项目时:
mvn archetype:generate -DarchetypeGroupId=org.grails
-DarchetypeArtifactId=grails-maven-archetype -DarchetypeVersion=1.3.6
-DgroupId=example -DartifactId=my-app
-DarchetypeRepository=http://repo1.maven.org/maven2
我收到错误
[错误]执行目标失败 org.apache.maven.plugins:maven-archetype-plugin:2.0:生成 (默认-cli)在项目上 Standalone-pom:所需的原型 不存在 (org.grails:grails-maven-archetype:1.3.6)
我检查了 存储库和版本 1.3.6 确实存在。此外,如果我将上面命令中的版本 1.3.6 替换为 1.3.2,它就可以工作。
When I try to create a Mavenized Grails 1.3.6 project using the archetype:
mvn archetype:generate -DarchetypeGroupId=org.grails
-DarchetypeArtifactId=grails-maven-archetype -DarchetypeVersion=1.3.6
-DgroupId=example -DartifactId=my-app
-DarchetypeRepository=http://repo1.maven.org/maven2
I get the error
[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-archetype-plugin:2.0:generate
(default-cli) on project
standalone-pom: The desired archetype
does not exist
(org.grails:grails-maven-archetype:1.3.6)
I've checked the repository and version 1.3.6 does exist. Moreover, if I replace version 1.3.6 in the command above with 1.3.2, it works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
运行
mvn archetype:generate
(交互模式)并选择选项286286:远程-> grails-maven-archetype (Grails 项目的 Maven 原型。)
一般来说,我遇到的麻烦比使用 Maven 原型的解决方案要多得多:S。
Run
mvn archetype:generate
(interactive mode) and select option 286286: remote -> grails-maven-archetype (Maven archetype for Grails projects.)
In general, I've had way more troubles than solutions with maven archetypes :S.
我不知道您的特定配置发生了什么,但我运行了您在那里列出的确切命令,并且它构建成功。因为我猜测这与您之前关于如何指定依赖项的问题有关,所以我怀疑您更关心 pom 文件的内容,而不是实际弄清楚原型发生了什么,我将发布 pom.xml原型为我生成的文件。
I don't know what's going on with your particular configuration, but I ran the exact command you listed there and it built successfully. Since I'm guessing this is related to your previous question about how to specify dependencies, I suspect that you care more about the contents of the pom file than actually figuring out what's going on with the archetype, I'll post the pom.xml file that the archetype generated for me.
grails 2 的新 Maven 原型即将推出。请参阅 MAVEN-162
New maven archetype for grails 2 will be available soon. See MAVEN-162