我正在尝试为Grails安装Perf4J Integration Plugin。
我在BuildConfig.groovy上添加了compile ":perf4j:0.1.1"
但是当我尝试刷新我的依赖项时,我得到了:
Fatal error during compilation org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
/home/me/Programs/test/target/work/plugins/perf4j-0.1.1/./Perf4jGrailsPlugin.groovy: 5: unable to resolve class org.perf4j.log4j.Log4JStopWatch
@ line 5, column 1.
import org.perf4j.log4j.Log4JStopWatch
^
/home/me/Programs/test/target/work/plugins/perf4j-0.1.1/./Perf4jGrailsPlugin.groovy: 2: unable to resolve class org.codehaus.groovy.grails.plugins.support.GrailsPluginUtils
@ line 2, column 1.
import org.codehaus.groovy.grails.plugins.support.GrailsPluginUtils
^
2 errors
(Use --stacktrace to see the full trace)
...
发生第二个错误是因为GrailsPluginUtils已将包从org.codehaus.groovy.grails.plugins.support
更改为org.codehaus.groovy.grails.plugins
。我在Github fork上找到了固定版本。
但即使我尝试编译从上面链接的Github存储库下载的插件源,我仍然得到org.perf4j.log4j.Log4JStopWatch
。
有谁知道如何解决它?
答案 0 :(得分:0)
我猜你的grails应用程序仍然会缓存perf4j
的旧版本。您提到了我们克隆的github中的存储库,修复了丢失的包并将版本提升到0.2.1
。
根据我的经验,我们做了一些工作:
per4j
,则需要在compile ":perf4j:0.2.1"
部分中添加plugins
,并在mavenRepo "http://www.ebi.ac.uk/~maven/m2repo"
部分repositories
下添加BuildConfig.groovy
1}}位于grails-app
目录。这有助于您解决问题。