-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
39 lines (35 loc) · 915 Bytes
/
build.gradle.kts
File metadata and controls
39 lines (35 loc) · 915 Bytes
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
31
32
33
34
35
36
37
38
39
group = "dev.equo"
version = "0.2.0-SNAPSHOT"
if (gradle.parent != null) {
val parentRoot = gradle.parent!!.rootProject
val versionProps = listOf(
"swtVersionFull", "eclipseUrl", "draw2dVersion",
"jfaceVersion", "coreCommandsVersion", "equinoxCommonVersion",
"jfaceTextVersion", "eclipseTextVersion"
)
allprojects {
versionProps.forEach { key ->
val value = parentRoot.findProperty(key)?.toString()
if (value != null) {
project.extra[key] = value
}
}
}
}
allprojects {
repositories {
mavenCentral()
maven {
url = uri("https://dl.equo.dev/sdk/mvn/release")
content {
excludeGroup("org.eclipse")
}
}
}
}
dependencies {
}
tasks.wrapper {
gradleVersion = "8.7"
distributionType = Wrapper.DistributionType.ALL
}