forked from modelix/modelix.samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
30 lines (26 loc) · 1.06 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
plugins {
kotlin("jvm") version "1.7.22" apply false
kotlin("kapt") version "1.7.10" apply false
id("com.specificlanguages.mps") version "1.5.0" apply false
id ("com.github.node-gradle.node") version "3.2.1" apply false
}
subprojects {
repositories {
mavenCentral()
maven { url = uri("https://artifacts.itemis.cloud/repository/maven-mps/") }
maven {
url = uri("https://maven.pkg.github.com/modelix/mps-json-bulk-model-access")
credentials {
username = project.findProperty("gpr.user")?.toString() ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key")?.toString() ?: System.getenv("TOKEN")
}
}
maven {
url = uri("https://maven.pkg.github.com/modelix/api-gen")
credentials {
username = project.findProperty("gpr.user")?.toString() ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key")?.toString() ?: System.getenv("TOKEN")
}
}
}
}