我正在使用gradle-dependency-analyze插件来分析我的Gradle项目的依赖项。 The plugin documentation声明它允许指定" permitUnusedDeclared"用于定义应以特殊方式处理的依赖关系的配置。但是,我无法弄清楚如何在Gradle中配置它。看来我不是第一个遇到此问题的人,因为an open bug report要求改进这个特定领域的文档。
因此,我如何配置build.gradle来指定此配置?举一个具体的例子,我想说我想使用" org.springframework.boot:spring-boot-configuration-processor:1.4.4.RELEASE"和#34; org.springframework.boot:spring-boot-starter-actuator:1.4.4.RELEASE"作为配置值。
我可以在the Plugin definition中看到这是被添加的;我不知道如何在我的项目中实际配置它。
答案 0 :(得分:0)
根据错误报告中的新comment,解决方案是将这些添加到build.gradle的依赖项部分:
dependencies {
compile 'org.springframework.boot:spring-boot-actuator:1.4.4.RELEASE'
compile 'org.springframework.boot:spring-boot-configuration-processor:1.4.4.RELEASE'
permitUnusedDeclared 'org.springframework.boot:spring-boot-actuator:1.4.4.RELEASE'
permitUnusedDeclared 'org.springframework.boot:spring-boot-configuration-processor:1.4.4.RELEASE'
}