【工具使用】Gradle build报错 io.spring.gradle.dependencymanagement.DependencyManagementPlugin

孔光赫
2023-12-01
$ gradle build

FAILURE: Build failed with an exception.

* Where:
Build file '/Users/honey/workSpace/XX_ProTest/build.gradle' line: 17

* What went wrong:
A problem occurred evaluating root project 'XX_ProTest'.
> Failed to apply plugin [class 'io.spring.gradle.dependencymanagement.DependencyManagementPlugin']
   > Could not create task ':dependencyManagement'.
      > Could not create task of type 'DependencyManagementReportTask'.
         > Unable to determine constructor argument #1: missing parameter of interface org.gradle.logging.StyledTextOutputFactory, or no service of type interface org.gradle.logging.StyledTextOutputFactory

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 633ms

问题解决:
https://stackoverflow.com/questions/40963570/java-gradle-no-service-of-type-styled-text-output-factory-available-in-project-s
原来是gradle和spring dependency-management-plugin版本不兼容问题。

 类似资料: