Skip to content

Commit

Permalink
pom fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Furer committed Jun 20, 2021
1 parent ab5c1e3 commit 44b6925
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions grpc-spring-boot-starter-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ nexusPublishing {
}

}
def withPom = {pomObj->
def withPom = {pomObj, desc->
configure(pomObj,{
name = 'grpc-spring-boot-starter-gradle-plugin'
description = 'Configures project with grpc-spring-boot-starter'
description = "Configures project with grpc-spring-boot-starter ${desc}"
url = 'https://github.com/LogNet/grpc-spring-boot-starter'

scm {
Expand Down Expand Up @@ -128,13 +128,13 @@ publishing {
publications {
grpcBootPluginPluginMarkerMaven {
// customize marker publications here
pom = withPom << {it.name +=" marker" }
withPom.call(pom,"")
}
pluginMaven {
// customize main publications here
artifact sourceJar
artifact javadocJar
pom = withPom
withPom.call(pom," marker")
}
}
}
Expand Down

0 comments on commit 44b6925

Please sign in to comment.