Skip to content

Commit 42dc90e

Browse files
committed
Updated signing process for maven central publishing
1 parent ea714e6 commit 42dc90e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
plugins {
22
id "idea"
33
id "java-library"
4+
id "signing"
45
id "me.champeau.jmh" version "0.6.6"
56
id "com.vanniktech.maven.publish" version "0.34.0"
67
}
78

9+
signing {
10+
useGpgCmd()
11+
sign publishing.publications
12+
}
13+
814
allprojects {
915
repositories {
1016
mavenLocal()
1117
mavenCentral()
18+
gradlePluginPortal()
1219
maven {
1320
url "https://plugins.gradle.org/m2/"
1421
}
@@ -19,6 +26,7 @@ group 'com.trivago'
1926
version '0.2.4-SNAPSHOT'
2027

2128
mavenPublishing {
29+
coordinates("com.trivago", "fastutil-concurrent-wrapper", "0.2.3")
2230
pom {
2331
name = "fastutil-concurrent-wrapper"
2432
description = "Set of concurrent wrappers around fastutil primitive maps."

0 commit comments

Comments
 (0)