gpt4 book ai didi

gradle - 在 build.gradle 文件中排除传递依赖时构建项目时出错

转载 作者:行者123 更新时间:2023-12-01 13:49:48 24 4
gpt4 key购买 nike

我正在使用 Spring Boot 创建一个多模块项目来部署我的应用程序并使用 gradle 作为我的构建工具。

现在,我正在为项目中的一些模块创建独立的部署。有些项目需要嵌入式tomcat,有些则不需要。所有公共(public)依赖项都放在一个公共(public)项目中,所有其他模块都依赖于这个公共(public)项目。

大多数其他部署模块需要一个嵌入式tomcat应用服务器和其他web组件(由org.springframework.boot提供,名称:'spring-boot-starter-web)所以这已经包含在build.gradle中对于普通项目

这是普通项目的build.gradle:

compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: springBootVersion
compile group: 'org.springframework.data', name: 'spring-data-jpa', version: springDataJpaVersion

现在,将要独立部署的其他模块之一不需要这个嵌入式 tomcat 和其他 mvc jar,包括 spring-boot-starter-web,但需要来自公共(public)项目的其他传递依赖项。因此,我想排除

的传递依赖
 compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: springBootVersion

我在build.gradle其他项目中是这样做的

dependencies {
compile project(':common') {
exclude group 'org.springframework.boot', module:'spring-boot-starter-web'
}
}

但是在构建时抛出这个错误:

startup failed: build file '/Users/user1/Documents/repo/storm/build.gradle': 30: expecting '}', found ',' @ line 30, column 44. oup 'org.springframework.boot', module:'

将其更改为:

dependencies {
compile project(':common'){
exclude group 'org.springframework.boot:spring-boot-starter-web'
}
}

抛出:

Could not find method exclude() for arguments [parent-project name] on project ':common'.

我怎样才能在这里排除传递依赖?

最佳答案

您需要在 compile 而不是 project 上调用 exclude:

dependencies {
compile(project(':common')) {
exclude group: 'org.springframework.boot', module:'spring-boot-starter-web'
}
}

关于gradle - 在 build.gradle 文件中排除传递依赖时构建项目时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32818122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com