Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nlam-atlassian committed Oct 18, 2024
1 parent 26a388b commit 4b8914c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import java.io.FileInputStream
import java.util.Properties

plugins {
alias(libs.plugins.kotlinMultiplatform).apply(false)
alias(libs.plugins.kotlin.jvm)
Expand All @@ -19,9 +22,12 @@ dependencies {
implementation(libs.kotlin.stdlib)
}

val versionProperties = Properties()
versionProperties.load(FileInputStream("version.properties"))

allprojects {
group = "com.atlassian.prosemirror"
version = properties["projectVersion"] as String
version = versionProperties.get("projectVersion") as String
}

val javaVersion = JavaVersion.VERSION_17
Expand Down

0 comments on commit 4b8914c

Please sign in to comment.