码迷,mamicode.com
首页 > 其他好文 > 详细

Gradle编译报错

时间:2018-07-29 11:49:04      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:with   package   ram   url   websocket   epo   tar   tor   create   

问题重现

gradle build
A problem occurred evaluating root project ‘Spring4WebSocket‘.
> Failed to apply plugin [class ‘io.spring.gradle.dependencymanagement.DependencyManagementPlugin‘]
   > Could not create task of type ‘DependencyManagementReportTask‘.

 

解决方法

添加 classpath("io.spring.gradle:dependency-management-plugin:0.6.1.RELEASE")

buildscript {
    repositories {
        maven { url "http://repo.spring.io/libs-release" }
        mavenLocal()
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.3.3.RELEASE")
        classpath("io.spring.gradle:dependency-management-plugin:0.6.1.RELEASE")
    }
}

apply plugin: ‘java‘
apply plugin: ‘eclipse‘
apply plugin: ‘spring-boot‘
apply plugin: ‘war‘
apply plugin: ‘java‘
apply plugin: ‘maven‘
sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
    mavenLocal()
    mavenCentral()
    maven { url "http://repo.spring.io/libs-release" }
}
bootRepackage {
    enabled false
}
dependencies {
    compile("org.springframework.boot:spring-boot-starter-websocket")
    compile("org.springframework:spring-messaging")
    providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
    compile ‘jstl:jstl:1.2‘
}

再次编译顺利通过

参考:3.0 M1: SpringBoot-1.3.5 project fails to build, aborts with an error message on creation of DependencyManagementReportTask

Gradle编译报错

标签:with   package   ram   url   websocket   epo   tar   tor   create   

原文地址:https://www.cnblogs.com/passedbylove/p/9384651.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!