Skip to content

Commit

Permalink
Fix gradle publishing
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio Di Fabio <[email protected]>
  • Loading branch information
fab-10 committed Apr 2, 2024
1 parent 1a758a0 commit 193df83
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,15 @@ distZip {
setVersion(archiveBuildVersion)
}

publishing {
publications {
mavenJava(MavenPublication) {
groupId = '.'
version = project.version
artifactId = 'linea-besu'
}
}
}
def dockerBuildVersion = project.hasProperty('release.releaseVersion') ? project.property('release.releaseVersion') : "${rootProject.version}"
def dockerOrgName = project.hasProperty('dockerOrgName') ? project.getProperty("dockerOrgName") : "hyperledger"
def dockerArtifactName = project.hasProperty("dockerArtifactName") ? project.getProperty("dockerArtifactName") : "besu"
Expand Down

0 comments on commit 193df83

Please sign in to comment.