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 c04e62c commit 7fc2322Copy full SHA for 7fc2322
build.gradle.kts
@@ -2,8 +2,8 @@ plugins {
2
kotlin("jvm") version Versions.kotlin apply false
3
}
4
5
-group = "ru.nsk"
6
-version = "0.10.0"
+group = Versions.libraryGroup
+version = Versions.libraryVersion
7
8
allprojects {
9
repositories {
buildSrc/src/main/kotlin/ru/nsk/Versions.kt
@@ -1,4 +1,8 @@
1
object Versions {
+ // library
+ const val libraryGroup = "ru.nsk"
+ const val libraryVersion = "0.11.0"
+
// tools
const val kotlin = "1.7.10"
const val gradle = "7.1.0"
0 commit comments