Java 加载插件管理器时出错:无法创建类[org.codehaus.groovy.grails.plugins.web.mapping.UrlMappingsGrailsPlugin]的新实例

Java 加载插件管理器时出错:无法创建类[org.codehaus.groovy.grails.plugins.web.mapping.UrlMappingsGrailsPlugin]的新实例,java,macos,maven,grails,groovy,Java,Macos,Maven,Grails,Groovy,尝试创建Grails插件项目并使用以下命令时,收到有关在Grails中加载UrlMappings插件的错误消息: grails创建插件用户管理 然后在用户管理项目中: grails创建pom xxx.xxxxx mvn grails:run app 我查看了中所述的建议解决方案,但该解决方案并没有解决我的问题 maven信息中有关系统的详细信息: Apache Maven 3.2.1 (ea8b2b07643dbb1b84b6d16e1f08391b666bc1e9; 2014-02-15T04

尝试创建Grails插件项目并使用以下命令时,收到有关在Grails中加载UrlMappings插件的错误消息:

grails创建插件用户管理

然后在用户管理项目中:

grails创建pom xxx.xxxxx

mvn grails:run app

我查看了中所述的建议解决方案,但该解决方案并没有解决我的问题

maven信息中有关系统的详细信息:

Apache Maven 3.2.1 (ea8b2b07643dbb1b84b6d16e1f08391b666bc1e9; 2014-02-15T04:37:52+10:00)
Maven home: /usr/local/Cellar/maven/3.2.1/libexec
Java version: 1.7.0_71, vendor: Oracle Corporation
Java home: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.10", arch: "x86_64", family: "mac"
请在下面找到完整的错误消息:

[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for xxx.xxxxx:user-management:grails-plugin:0.1-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-surefire-plugin is missing. @ line 74, column 21
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO]
[INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1
[INFO]

[INFO] ------------------------------------------------------------------------
[INFO] Building user-management 0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- grails-maven-plugin:2.4.4:run-app (default-cli) @ user-management ---
|Loading Grails 2.4.4
|Configuring classpath
|Running pre-compiled script
.
|Environment set to development
.................................
|Packaging Grails application
.....................Error
|
Error loading plugin manager: Could not create a new instance of class [org.codehaus.groovy.grails.plugins.web.mapping.UrlMappingsGrailsPlugin]! (Use --stacktrace to see the full trace)

Apache Maven 3.2.3中似乎已经修复了该问题,因为现在一切正常,没有出现任何错误。

我尝试更新到mvn版本3.2.3甚至3.3.9,但仍然出现相同的错误。