We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 21e2a30 + bb2b6c7 commit 1344394Copy full SHA for 1344394
build.gradle.kts
@@ -17,6 +17,7 @@
17
*
18
*/
19
20
+import org.eclipse.kuksa.version.SemanticVersion
21
import org.eclipse.kuksa.version.VERSION_FILE_DEFAULT_NAME
22
import org.eclipse.kuksa.version.VERSION_FILE_DEFAULT_PATH_KEY
23
import java.nio.file.FileVisitResult
@@ -32,6 +33,9 @@ import kotlin.io.path.visitFileTree
32
33
34
val versionDefaultPath = "$rootDir/$VERSION_FILE_DEFAULT_NAME"
35
rootProject.ext[VERSION_FILE_DEFAULT_PATH_KEY] = versionDefaultPath
36
+val semanticVersion = SemanticVersion(versionDefaultPath)
37
+version = semanticVersion.versionName
38
+group = "org.eclipse.kuksa"
39
40
plugins {
41
base
0 commit comments