We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea714e6 commit 42dc90eCopy full SHA for 42dc90e
build.gradle
@@ -1,14 +1,21 @@
1
plugins {
2
id "idea"
3
id "java-library"
4
+ id "signing"
5
id "me.champeau.jmh" version "0.6.6"
6
id "com.vanniktech.maven.publish" version "0.34.0"
7
}
8
9
+signing {
10
+ useGpgCmd()
11
+ sign publishing.publications
12
+}
13
+
14
allprojects {
15
repositories {
16
mavenLocal()
17
mavenCentral()
18
+ gradlePluginPortal()
19
maven {
20
url "https://plugins.gradle.org/m2/"
21
@@ -19,6 +26,7 @@ group 'com.trivago'
26
version '0.2.4-SNAPSHOT'
27
28
mavenPublishing {
29
+ coordinates("com.trivago", "fastutil-concurrent-wrapper", "0.2.3")
22
30
pom {
23
31
name = "fastutil-concurrent-wrapper"
24
32
description = "Set of concurrent wrappers around fastutil primitive maps."
0 commit comments