AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
### 64.9.2 自定义Gradle,用于产生一个导入依赖管理的pom 以下示例展示了如何配置Gradle产生一个导入`spring-boot-dependencies`提供的依赖管理的pom,更多信息请参考[Gradle用户指南](http://gradle.org/docs/current/userguide/userguide.html)。 ```gradle uploadArchives { repositories { mavenDeployer { pom { project { dependencyManagement { dependencies { dependency { groupId "org.springframework.boot" artifactId "spring-boot-dependencies" version "1.4.1.RELEASE" type "pom" scope "import" } } } } } } } } ```