Skip to content
Snippets Groups Projects
Verified Commit 8f97f22e authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

build: determine version from git tags

parent 207255d6
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
*/
plugins {
id("justjanne.version")
id("justjanne.dokka")
id("justjanne.publish-maven-central")
idea
......@@ -15,4 +16,3 @@ plugins {
}
group = "de.justjanne.libquassel"
version = "0.10.1"
import org.gradle.api.Project
/*
* libquassel
* Copyright (c) 2022 Janne Mareike Koschinski
*
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at https://mozilla.org/MPL/2.0/.
*/
version = cmd("git", "describe", "--always", "--tags", "HEAD") ?: "1.0.0"
fun Project.cmd(vararg command: String) = try {
val stdOut = java.io.ByteArrayOutputStream()
exec {
commandLine(*command)
standardOutput = stdOut
}
stdOut.toString(Charsets.UTF_8.name()).trim()
} catch (e: Throwable) {
null
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment