使用Gradle

时间:2016-08-07 15:27:04

标签: mongodb gradle querydsl

我想我没有正确配置存储库,但是以下build.gradle还存在其他问题:

buildscript {
    repositories {

        mavenCentral()
        maven { url "http://repo.spring.io/libs-snapshot" }
        jcenter()

    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE")
        classpath "gradle.plugin.com.ewerk.gradle.plugins:querydsl-plugin:1.0.7"
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
apply plugin: 'com.ewerk.gradle.plugins.querydsl'

jar {
    baseName = 'aydin'
    version =  '0.1.0'
}

repositories {
    jcenter()
    mavenCentral()
    maven { url "http://repo.spring.io/libs-snapshot" }

}

querydsl {
    springDataMongo = true
}

dependencies {
    compile("org.springframework.boot:spring-boot-starter-web")
    compile("org.springframework.boot:spring-boot-starter-data-mongodb")

    compile group: "de.flapdoodle.embed", name: "de.flapdoodle.embed.mongo", version: "1.50.3"

    compile "com.mysema.querydsl:querydsl-jpa:3.6.3"
    compile "com.mysema.querydsl:querydsl-apt:3.6.3:jpa" // Magic happens here
    compile "com.querydsl.apt:querydsl-mongodb:4.0.9"

    testCompile("org.springframework.boot:spring-boot-starter-test")
    testCompile("junit:junit")
}

task wrapper(type: Wrapper) {
    gradleVersion = '2.14'
}

这给了我:

  

无法解析配置':classpath'的所有依赖项。   无法解析gradle.plugin.com.ewerk.gradle.plugins:querydsl-plugin:1.0.7。        要求:   ...   无法解析gradle.plugin.com.ewerk.gradle.plugins:querydsl-plugin:1.0.7。   无法获取资源“http://repo.spring.io/libs-snapshot/gradle/plugin/com/ewerk/gradle/plugins/querydsl-plugin/1.0.7/querydsl-plugin-1.0.7.pom”。   不能HEAD'http://repo.spring.io/libs-snapshot/gradle/plugin/com/ewerk/gradle/plugins/querydsl-plugin/1.0.7/querydsl-plugin-1.0.7.pom'。从服务器收到状态码502:Bad Gateway

1 个答案:

答案 0 :(得分:0)

可能你需要包含具有querydsl插件的repo?

    maven { url "https://plugins.gradle.org/m2/" }