Skip to content

Commit

Permalink
Configure Maven publications with Gradle
Browse files Browse the repository at this point in the history
Prior to this commit, the build would use a custom task to create a BOM
and manually include/exclude/customize dependencies. It would also use
the "maven" plugin to customize the POM before publication.

This commit now uses a Gradle Java Platform for publishing the Spring
Framework BOM. We're also now using the "maven-publish" plugin to
prepare and customize publications.

This commit also tells the artifactory plugin (which is currently
applied only on the CI) not to publish internal modules.

See spring-projectsgh-23282
  • Loading branch information
bclozel committed Aug 21, 2019
1 parent 0370101 commit 7ce1f5e
Show file tree
Hide file tree
Showing 7 changed files with 82 additions and 100 deletions.
15 changes: 10 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ext {
}
}

configure(allprojects.findAll { (it.name != "spring-framework-bom") } ) { project ->
configure(allprojects.findAll { (it.name != "framework-bom") } ) { project ->
group = "org.springframework"

apply plugin: "java"
Expand Down Expand Up @@ -177,6 +177,7 @@ configure(rootProject) {
apply plugin: "kotlin"
apply plugin: "io.spring.nohttp"
apply plugin: 'org.springframework.build.api-diff'
apply from: "${rootDir}/gradle/publications.gradle"
apply from: "${rootDir}/gradle/docs.gradle"

nohttp {
Expand All @@ -200,10 +201,14 @@ configure(rootProject) {
asciidoctor("io.spring.asciidoctor:spring-asciidoctor-extensions:0.1.3.RELEASE")
}

artifacts {
archives docsZip
archives schemaZip
archives distZip
publishing {
publications {
springFramework(MavenPublication) {
artifact docsZip
artifact schemaZip
artifact distZip
}
}
}
}

44 changes: 16 additions & 28 deletions framework-bom/framework-bom.gradle
Original file line number Diff line number Diff line change
@@ -1,35 +1,23 @@
description = "Spring Framework (Bill of Materials)"

apply plugin: "java"
apply plugin: "maven"
apply plugin: 'java-platform'
apply from: "$rootDir/gradle/publications.gradle"

configurations.archives.artifacts.clear()
artifacts {
// work around GRADLE-2406 by attaching text artifact
archives(file("spring-framework-bom.txt"))
}
group = "org.springframework"

install {
repositories.mavenInstaller {
pom.whenConfigured {
packaging = "pom"
withXml {
asNode().children().last() + {
delegate.dependencyManagement {
delegate.dependencies {
parent.moduleProjects.sort { "$it.name" }.each { p ->
if (p != project) {
delegate.dependency {
delegate.groupId(p.group)
delegate.artifactId(p.name)
delegate.version(p.version)
}
}
}
}
}
}
}
dependencies {
constraints {
parent.moduleProjects.sort { "$it.name" }.each {
api it
}
}
}

publishing {
publications {
springFramework(MavenPublication) {
artifactId = 'spring-framework-bom'
from components.javaPlatform
}
}
}
4 changes: 0 additions & 4 deletions framework-bom/spring-framework-bom.txt

This file was deleted.

40 changes: 40 additions & 0 deletions gradle/publications.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
apply plugin: "maven-publish"

publishing {
publications {
springFramework(MavenPublication) {
pom {
name = project.description
description = project.description
url = "https://github.com/spring-projects/spring-framework"
organization {
name = "Spring IO"
url = "https://spring.io/projects/spring-framework"
}
licenses {
license {
name = "Apache License, Version 2.0"
url = "https://www.apache.org/licenses/LICENSE-2.0"
distribution = "repo"
}
}
scm {
url = "https://github.com/spring-projects/spring-framework"
connection = "scm:git:git://github.com/spring-projects/spring-framework"
developerConnection = "scm:git:git://github.com/spring-projects/spring-framework"
}
developers {
developer {
id = "jhoeller"
name = "Juergen Hoeller"
email = "jhoeller@pivotal.io"
}
}
issueManagement {
system = "GitHub"
url = "https://github.com/spring-projects/spring-framework/issues"
}
}
}
}
}
68 changes: 8 additions & 60 deletions gradle/spring-module.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'org.springframework.build.compile'
apply plugin: 'org.springframework.build.optional-dependencies'
apply plugin: 'org.springframework.build.test-sources'
apply plugin: "maven"
apply from: "$rootDir/gradle/publications.gradle"

jar {
manifest.attributes["Implementation-Title"] = project.name
Expand Down Expand Up @@ -47,66 +47,14 @@ task javadocJar(type: Jar) {
from javadoc
}

artifacts {
archives sourcesJar
archives javadocJar
}

install {
repositories.mavenInstaller {
customizePom(pom, project)
publishing {
publications {
springFramework(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
}
}
}

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"
}

def managedVersions = dependencyManagement.managedVersions
generatedPom.dependencies.findAll{dep -> !dep.version }.each { dep ->
dep.version = managedVersions["${dep.groupId}:${dep.artifactId}"]
}

// add all items necessary for maven central publication
generatedPom.project {
name = gradleProject.description
description = gradleProject.description
url = "https://github.com/spring-projects/spring-framework"
organization {
name = "Spring IO"
url = "https://projects.spring.io/spring-framework"
}
licenses {
license {
name "Apache License, Version 2.0"
url "https://www.apache.org/licenses/LICENSE-2.0"
distribution "repo"
}
}
scm {
url = "https://github.com/spring-projects/spring-framework"
connection = "scm:git:git://github.com/spring-projects/spring-framework"
developerConnection = "scm:git:git://github.com/spring-projects/spring-framework"
}
developers {
developer {
id = "jhoeller"
name = "Juergen Hoeller"
email = "jhoeller@pivotal.io"
}
}
issueManagement {
system = "GitHub"
url = "https://github.com/spring-projects/spring-framework/issues"
}
}
}
}
7 changes: 6 additions & 1 deletion integration-tests/integration-tests.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,9 @@ dependencies {
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
testCompile("org.hibernate:hibernate-core:5.1.17.Final")
}
}

// Avoid publishing JAR to the artifact repository
if (pluginManager.hasPlugin("com.jfrog.artifactory")) {
artifactoryPublish.skip = true
}
4 changes: 2 additions & 2 deletions spring-core/kotlin-coroutines/kotlin-coroutines.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ dependencies {
compile("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
}

// Avoid publishing coroutines JAR to the artifact repository
if (pluginManager.hasPlugin("artifactoryPublish")) {
// Avoid publishing JAR to the artifact repository
if (pluginManager.hasPlugin("com.jfrog.artifactory")) {
artifactoryPublish.skip = true
}

Expand Down

0 comments on commit 7ce1f5e

Please sign in to comment.