1 Star 0 Fork 0

Vincent/spring-batch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
publish-maven.gradle 2.04 KB
一键复制 编辑 原始数据 按行查看 历史
Spring Operator 提交于 2019-03-05 23:30 . URL Cleanup
apply plugin: "propdeps-maven"
install {
repositories.mavenInstaller {
customizePom(pom, project)
}
}
def customizePom(pom, gradleProject) {
pom.whenConfigured { generatedPom ->
// eliminate test-scoped dependencies (no need in maven central poms)
generatedPom.dependencies.removeAll { dep ->
dep.scope == 'test'
}
// sort to make pom dependencies order consistent to ease comparison of older poms
generatedPom.dependencies = generatedPom.dependencies.sort { dep ->
"$dep.scope:$dep.groupId:$dep.artifactId"
}
// add all items necessary for maven central publication
generatedPom.project {
name = gradleProject.description
description = gradleProject.description
url = linkHomepage
organization {
name = 'Spring'
url = 'https://spring.io'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'https://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
scm {
url = linkScmUrl
connection = 'scm:git:' + linkScmConnection
developerConnection = 'scm:git:' + linkScmDevConnection
}
developers {
developer {
id = 'dsyer'
name = 'Dave Syer'
email = '[email protected]'
}
developer {
id = 'nebhale'
name = 'Ben Hale'
email = '[email protected]'
}
developer {
id = 'lward'
name = 'Lucas Ward'
}
developer {
id = 'robokaso'
name = 'Robert Kasanicky'
email = '[email protected]'
}
developer {
id = 'trisberg'
name = 'Thomas Risberg'
email = '[email protected]'
}
developer {
id = 'dhgarrette'
name = 'Dan Garrette'
email = '[email protected]'
}
developer {
id = 'mminella'
name = 'Michael Minella'
email = '[email protected]'
roles = ["project lead"]
}
developer {
id = 'chrisjs'
name = 'Chris Schaefer'
email = '[email protected]'
}
developer {
id = 'benas'
name = 'Mahmoud Ben Hassine'
email = '[email protected]'
}
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/vincentjava/spring-batch.git
[email protected]:vincentjava/spring-batch.git
vincentjava
spring-batch
spring-batch
master

搜索帮助