Spring-boot依赖项无法使用gradle

时间:2015-04-21 07:29:59

标签: gradle spring-boot build.gradle

我按照http://spring.io/guides/gs/messaging-rabbitmq/的教程,第一次尝试使用Gradle。 当我包含spring-boot依赖项时,脚本会抛出错误。这是我的build.gradle文件中的代码段:

    buildscript {
        repositories {
            mavenCentral()
        }
        dependencies {
            classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.3.RELEASE")
        }
    }

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

$ gradle tasks因错误而失败:

  A problem occurred evaluating root project 'rabbit-mq-example'.
> org.gradle.api.tasks.TaskContainer.create(Ljava/lang/String;Ljava/lang/Class;)Lorg/gradle/api/Task;

当我使用apply plugin: 'spring-boot'标志运行时,这指向--debug行。 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:3)

根据您提供的链接,spring-boot的要求为:

  • JDK 1.6或更高版本
  • Gradle 2.3 + 或Maven 3.0 +