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 5069a9e commit e14148eCopy full SHA for e14148e
metamodel-gradle/build.gradle.kts
@@ -47,7 +47,9 @@ val resolveMps by tasks.registering(Sync::class) {
47
}
48
49
val writeVersionFile by tasks.registering {
50
- projectDir.resolve("src/main/resources/modelix.core.version.properties").writeText("""
+ val propertiesFile = projectDir.resolve("src/main/resources/modelix.core.version.properties")
51
+ propertiesFile.parentFile.mkdirs()
52
+ propertiesFile.writeText("""
53
modelix.core.version=$version
54
""".trimIndent())
55
0 commit comments