我按照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
行。
任何帮助将不胜感激。
答案 0 :(得分:3)
根据您提供的链接,spring-boot
的要求为: