We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 718f9db commit 9c197f1Copy full SHA for 9c197f1
build.gradle
@@ -30,6 +30,10 @@ plugins {
30
id "signing"
31
}
32
33
+ext {
34
+ project_version = "0.7.0-SNAPSHOT"
35
+}
36
+
37
allprojects {
38
group = "io.github.viartemev"
39
@@ -71,7 +75,7 @@ allprojects {
71
75
72
76
configure(rootProject) {
73
77
archivesBaseName = "rabbitmq-kotlin"
74
- version = "0.0.7-SNAPSHOT"
78
+ version = project_version
79
80
apply plugin: "com.adarshr.test-logger"
81
@@ -155,7 +159,7 @@ publishing {
155
159
artifact(tasks["javadocJar"])
156
160
groupId = "io.github.viartemev"
157
161
artifactId = "rabbitmq-kotlin"
158
- version = "0.7.0-SNAPSHOT"
162
163
pom {
164
name.set("RabbitMQ Kotlin")
165
description.set("Kotlin library for RabbitMQ")
0 commit comments