Skip to content

Commit 9c197f1

Browse files
committed
fix gradle
1 parent 718f9db commit 9c197f1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ plugins {
3030
id "signing"
3131
}
3232

33+
ext {
34+
project_version = "0.7.0-SNAPSHOT"
35+
}
36+
3337
allprojects {
3438
group = "io.github.viartemev"
3539

@@ -71,7 +75,7 @@ allprojects {
7175

7276
configure(rootProject) {
7377
archivesBaseName = "rabbitmq-kotlin"
74-
version = "0.0.7-SNAPSHOT"
78+
version = project_version
7579

7680
apply plugin: "com.adarshr.test-logger"
7781

@@ -155,7 +159,7 @@ publishing {
155159
artifact(tasks["javadocJar"])
156160
groupId = "io.github.viartemev"
157161
artifactId = "rabbitmq-kotlin"
158-
version = "0.7.0-SNAPSHOT"
162+
version = project_version
159163
pom {
160164
name.set("RabbitMQ Kotlin")
161165
description.set("Kotlin library for RabbitMQ")

0 commit comments

Comments
 (0)