未找到 Magnolia 的 Gradle 依赖项

Posted

技术标签:

【中文标题】未找到 Magnolia 的 Gradle 依赖项【英文标题】:Gradle dependencies for Magnolia not found 【发布时间】:2016-12-25 15:23:44 【问题描述】:

我正在尝试使用 Magnolia 创建一个新项目,但未找到 Gradle 依赖项。

试过这个 https://mvnrepository.com/artifact/info.magnolia.blossom/magnolia-module-blossom

Gradle 构建返回

找不到 info.magnolia.blossom:magnolia-module-blossom:3.1.3。

gradle文件内容:

buildscript 
ext 
    springBootVersion = '1.3.5.RELEASE'

repositories 
    mavenCentral()
    maven 
        url "http://mvnrepository.com/artifact/org.hibernate/hibernate-search-orm"
        url "https://mvnrepository.com/artifact/info.magnolia.blossom/magnolia-module-blossom/3.1.3"
        url "https://repo.spring.io/libs-milestone"
    

dependencies 
    classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion") 


apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'spring-boot' 
apply plugin: 'war'

war 
    baseName = 'test.app'
    version =  '1.0.0'


springBoot 
    mainClass = 'com.test.app.Application'
    executable = true 


bootRun 
    addResources = true


sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories 
    mavenCentral()


dependencies 
    compile('org.springframework.boot:spring-boot-starter-actuator')
    compile('org.springframework.boot:spring-boot-configuration-processor')
    compile('org.springframework.boot:spring-boot-actuator-docs')
    compile('org.springframework.boot:spring-boot-starter-data-jpa')
    compile('org.springframework.boot:spring-boot-starter-redis')
    compile('org.springframework.boot:spring-boot-starter-jersey')
    compile('org.springframework.boot:spring-boot-starter-mail')
    compile('org.springframework.boot:spring-boot-starter-remote-shell')
    compile('org.springframework.boot:spring-boot-starter-security')
    compile("org.springframework.boot:spring-boot-starter-thymeleaf")   
    compile('org.springframework.boot:spring-boot-starter-web')
    compile('org.springframework.boot:spring-boot-starter-websocket')
    compile('org.springframework.session:spring-session:1.2.2.RELEASE') 
    compile group: 'org.hibernate', name: 'hibernate-search-orm', version: '5.1.0.Final'
    compile group: 'com.ryantenney.metrics', name: 'metrics-spring', version: '3.1.3'
    compile group: 'io.dropwizard.metrics', name: 'metrics-annotation', version: '3.1.2'    
    compile group: 'io.dropwizard.metrics', name: 'metrics-graphite', version: '3.1.2'  
    compile group: 'io.dropwizard.metrics', name: 'metrics-core', version: '3.1.2'  
    compile group: 'io.dropwizard.metrics', name: 'metrics-jvm', version: '3.1.2'   
    compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.1'   
    compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'  
    compile group: 'commons-validator', name: 'commons-validator', version: '1.5.1' 
    compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'    
    compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'    
    compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-jasper', version: '8.5.0' 
    compile group: 'org.springframework.security', name: 'spring-security-taglibs', version: '4.1.3.RELEASE'
    //https://mvnrepository.com/artifact/org.springframework.security/spring-security-messaging
    compile group: 'org.springframework.security', name: 'spring-security-messaging', version: '4.1.3.RELEASE'  
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '1.3.6.RELEASE'   

    // Magnolia
    compile group: 'info.magnolia', name: 'magnolia-core', version: '5.5'
    compile group: 'info.magnolia.blossom', name: 'magnolia-module-blossom', version: '3.1.3'

    compile group: 'jstl', name: 'jstl', version: '1.2'
    compile('org.ocpsoft.prettytime:prettytime:4.0.1.Final')        
    runtime('mysql:mysql-connector-java')
    providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
    testCompile('org.springframework.boot:spring-boot-starter-test') 



eclipse 
    classpath 
    containers.remove('org.eclipse.jdt.launching.JRE_CONTAINER')
    containers 'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8'


我可以使用其他存储库吗?

最好的问候, 拉兹万

【问题讨论】:

请与我们分享您的 build.gradle。 您是否尝试直接声明 nexus.magnolia-cms.com/content/repositories/… 而不是通过 mvnrepository.com? 你好 Jan,我仍然没有完成。 嗨,Razvan,你的这个原型成功了吗?您是否设法创建了一个基于 Spring Boot 的工作 Magnolia 项目? @sola 实际上我已经有一段时间没有继续这样做了。我知道我用 Maven 运行它,但我需要 Gradle,没有得到太多反馈,所以没有继续研究。我可能需要为一个项目再次选择这个主题,所以如果我能做到,我会回答这个问题。 【参考方案1】:

我发现您可能有两个问题

首先,您将附加存储库添加到 buildscript 块内的 repositories 块中。这些仅用于构建脚本本身的依赖项,例如 spring 插件。 您想要的是将至少 blossom 存储库添加到第二个 repositories 块,您可以在其中定义应用程序依赖项的存储库。

我看到的另一个问题是引用的存储库可能是错误的。首先,每个 maven 块只使用一个 url,并且 URL 可能不会指向正确的 maven 存储库。尝试以下方法:

    buildscript ...

    repositories 
        mavenCentral()
        maven 
            url "https://nexus.magnolia-cms.com/content/groups/public/"
        
        maven 
            url "https://repo.spring.io/libs-milestone"
        
    

希望对您有所帮助。

【讨论】:

以上是关于未找到 Magnolia 的 Gradle 依赖项的主要内容,如果未能解决你的问题,请参考以下文章

ModuleDependencyException:Module Magnolia Standard Templating Kit(1.4.4 版)依赖于 dms 1.5/* 版,未找到

Gradle 依赖项未列出本地 maven jar 的依赖项

Gradle javax.jms 依赖项未下载

查找未使用的gradle运行时依赖项

自定义演示未加载到 Magnolia CMS

如何找到依赖项的 gradle 实现路径?