-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
31 lines (29 loc) · 1.02 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
31
buildscript {
repositories {
mavenCentral()
jcenter()
maven("https://maven.atlassian.com/content/repositories/atlassian-public")
maven("http://maven.wso2.org/nexus/content/groups/wso2-public/")
maven("https://plugins.gradle.org/m2/")
maven("https://oss.sonatype.org/content/repositories/snapshots")
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${lt.markmerkk.Versions.kotlin}")
classpath("com.github.jengelman.gradle.plugins:shadow:4.0.2")
classpath("de.dynamicfiles.projects.gradle.plugins:javafx-gradle-plugin:8.8.2")
classpath("gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.8")
}
}
allprojects {
repositories {
mavenCentral()
jcenter()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
mavenContent {
snapshotsOnly()
}
}
maven("https://oss.sonatype.org/content/repositories/snapshots/")
}
}