在 Spring 引导应用程序中使用 Gradle 使用 Nexus 作为依赖项解析器
Use Nexus As Dependency Resolver using Gradle in Spring Boot Application
我正在使用 spring 引导开发应用程序,我正在使用 gradle 作为构建工具,我想配置 gradle 来解决它们的依赖关系而不是 maven central 或 jcenter 去我的本地 Nexus 服务器从他们的构建项目中获取所有依赖项。我没有找到任何配置。
在 build.gradle 中添加您的关系 url。
repositories {
// mavenLocal()
// mavenCentral()
// jcenter()
//maven { url 'http://10.9.0.31:8099/repository/maven-public/' }
maven { url 'http://ip:port/repository/maven-public/' }
}
对于 nexus 配置 look at this
我正在使用 spring 引导开发应用程序,我正在使用 gradle 作为构建工具,我想配置 gradle 来解决它们的依赖关系而不是 maven central 或 jcenter 去我的本地 Nexus 服务器从他们的构建项目中获取所有依赖项。我没有找到任何配置。
在 build.gradle 中添加您的关系 url。
repositories {
// mavenLocal()
// mavenCentral()
// jcenter()
//maven { url 'http://10.9.0.31:8099/repository/maven-public/' }
maven { url 'http://ip:port/repository/maven-public/' }
}
对于 nexus 配置 look at this