-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
29 lines (25 loc) · 859 Bytes
/
build.gradle
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
allprojects {
group = 'xyz.labmem.lipx.console'
version = "0.0.1-SNAPSHOT"
repositories {
flatDir { dirs 'libs' }
mavenCentral()
maven { setUrl("https://maven.aliyun.com/nexus/content/groups/public/") }
maven { url "https://plugins.gradle.org/m2/" }
}
}
buildscript {
ext {
}
repositories {
mavenCentral()
maven { setUrl("https://maven.aliyun.com/nexus/content/groups/public/") }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
classpath("org.jetbrains.kotlin:kotlin-lombok:${kotlinVersion}")
classpath("org.jetbrains.kotlin:kotlin-allopen:${kotlinVersion}")
classpath("gradle.plugin.com.github.johnrengelman:shadow:${shadowVersion}")
}
}