mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +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 {
|
plugins {
|
||||||
id 'java-library'
|
id 'java-library'
|
||||||
|
id 'signing'
|
||||||
id "com.vanniktech.maven.publish" version "0.29.0"
|
id "com.vanniktech.maven.publish" version "0.29.0"
|
||||||
id 'com.google.osdetector' version '1.7.3'
|
id 'com.google.osdetector' version '1.7.3'
|
||||||
}
|
}
|
||||||
|
@ -152,10 +153,14 @@ publishing {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
signing {
|
||||||
|
sign publishing.publications.mavenJava
|
||||||
|
}
|
||||||
|
|
||||||
import com.vanniktech.maven.publish.SonatypeHost
|
import com.vanniktech.maven.publish.SonatypeHost
|
||||||
mavenPublishing {
|
mavenPublishing {
|
||||||
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) //, true) // TODO re-enable autopublish!
|
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) //, true) // TODO re-enable autopublish!
|
||||||
signAllPublications()
|
//signAllPublications()
|
||||||
coordinates(project.group, rootProject.name, project.version)
|
coordinates(project.group, rootProject.name, project.version)
|
||||||
|
|
||||||
pom {
|
pom {
|
||||||
|
|
Loading…
Reference in a new issue