maven - 升级到 Grails 2.3 : Could not find artifact net. sf.ehcache:ehcache-core

标签 maven grails dependencies

我刚刚将 Grails 从 2.2.4 升级到 2.3,如下所示:

brew upgrade grails
grails upgrade

然后我根据 http://grails.org/doc/2.3.x/guide/upgradingFromPreviousVersionsOfGrails.html 更改了我的 BuildConfig.groovy如下:

grails.servlet.version = "2.5" // Change depending on target container compliance (2.5 or 3.0)
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
grails.project.target.level = 1.6
grails.project.source.level = 1.6
//grails.project.war.file = "target/${appName}-${appVersion}.war"

// uncomment (and adjust settings) to fork the JVM to isolate classpaths
//grails.project.fork = [
//   run: [maxMemory:1024, minMemory:64, debug:false, maxPerm:256]
//]

grails.project.dependency.resolver = "maven"

grails.project.dependency.resolution = {
    // inherit Grails' default dependencies
    inherits("global") {
        // specify dependency exclusions here; for example, uncomment this to disable ehcache:
        // excludes 'ehcache'
    }
    log "error" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
    checksums true // Whether to verify checksums on resolve
    legacyResolve false // whether to do a secondary resolve on plugin installation, not advised and here for backwards compatibility

    repositories {
        inherits true // Whether to inherit repository definitions from plugins

        grailsPlugins()
        grailsHome()
        grailsCentral()

        mavenLocal()
        mavenCentral()

        // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
        //mavenRepo "http://snapshots.repository.codehaus.org"
        //mavenRepo "http://repository.codehaus.org"
        //mavenRepo "http://download.java.net/maven/2/"
        //mavenRepo "http://repository.jboss.com/maven2/"
    }

    dependencies {
        // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.

        // runtime 'mysql:mysql-connector-java:5.1.22'
    }

    plugins {
//        runtime ":hibernate:$grailsVersion"
        runtime ":jquery:1.8.3"
        runtime ":resources:1.2"

        // Uncomment these (or add new ones) to enable additional resources capabilities
        //runtime ":zipped-resources:1.0"
        //runtime ":cached-resources:1.0"
        //runtime ":yui-minify-resources:0.1.5"

        build ":tomcat:7.0.40.1"

        runtime ":database-migration:1.3.2"

        compile ':cache:1.0.1'
        compile ":scaffolding:1.0.0"
        compile "net.sf.ehcache:ehcache-core:2.4.6"

        compile ":mongodb:1.3.0"
    }
}

仅添加/更改了这些行:

grails.project.dependency.resolver = "maven"
build ":tomcat:7.0.40.1"
compile ":scaffolding:1.0.0"
compile "net.sf.ehcache:ehcache-core:2.4.6"

但是使用 grails run-app 我得到以下结果:

| Loading Grails 2.3.0
| Configuring classpath
| Error Resolve error obtaining dependencies: Could not find artifact net.sf.ehcache:ehcache-core:zip:2.4.6 in grailsCentral (http://repo.grails.org/grails/plugins) (Use --stacktrace to see the full trace)
| Error Resolve error obtaining dependencies: Could not find artifact net.sf.ehcache:ehcache-core:zip:2.4.6 in grailsCentral (http://repo.grails.org/grails/plugins) (Use --stacktrace to see the full trace)
| Error Resolve error obtaining dependencies: Could not find artifact net.sf.ehcache:ehcache-core:zip:2.4.6 in grailsCentral (http://repo.grails.org/grails/plugins) (Use --stacktrace to see the full trace)
| Error Could not find artifact net.sf.ehcache:ehcache-core:zip:2.4.6 in grailsCentral (http://repo.grails.org/grails/plugins)
| Run 'grails dependency-report' for further information.

所以无法解析ehchache-core。我该如何解决?

最佳答案

您需要添加 compile "net.sf.ehcache:ehcache-core:2.4.6" 作为依赖而不是插件。

dependencies {
    compile "net.sf.ehcache:ehcache-core:2.4.6"
}

如果你以后使用hibernate插件如下

plugins {
    runtime ":hibernate:3.6.10.1" //or hibernate 4
}

那么你就不需要 ehcache-core 依赖,因为它已经是 hibernate 插件的传递依赖。必读 upgrade guide .

关于maven - 升级到 Grails 2.3 : Could not find artifact net. sf.ehcache:ehcache-core,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18802869/

相关文章:

java - (spotify)Java的Maven docker构建器

java - 适用于多种数据库类型的 Liquibase 二进制数组

hibernate - Grails 集成测试数据不能跨越原生 SQL 与 GORM 边界

c++ - 使用相互依赖的类是不好的做法吗?

java - 将 Maven 导出为包含所有依赖项的 jar 文件

grails - 从Intellij启动Geb测试

session - 多个 grails 应用程序 session 超时问题

检查何时同时包含两个 header

java - 自动下载Maven中依赖的依赖

java - protobuf生成代码导致的Eclipse构建循环(与Maven Project Builder相关)