mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-21 23:04:49 +01:00
ci: try to sign manually
This commit is contained in:
parent
5dcfd341d3
commit
d10b34eaf9
1 changed files with 6 additions and 1 deletions
7
dist/java/build.gradle
vendored
7
dist/java/build.gradle
vendored
|
@ -1,5 +1,6 @@
|
|||
plugins {
|
||||
id 'java-library'
|
||||
id 'signing'
|
||||
id "com.vanniktech.maven.publish" version "0.29.0"
|
||||
id 'com.google.osdetector' version '1.7.3'
|
||||
}
|
||||
|
@ -152,10 +153,14 @@ publishing {
|
|||
}
|
||||
}
|
||||
|
||||
signing {
|
||||
sign publishing.publications.mavenJava
|
||||
}
|
||||
|
||||
import com.vanniktech.maven.publish.SonatypeHost
|
||||
mavenPublishing {
|
||||
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) //, true) // TODO re-enable autopublish!
|
||||
signAllPublications()
|
||||
//signAllPublications()
|
||||
coordinates(project.group, rootProject.name, project.version)
|
||||
|
||||
pom {
|
||||
|
|
Loading…
Reference in a new issue