-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathbuild.gradle.kts
49 lines (39 loc) · 919 Bytes
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61")
}
}
plugins {
id("org.jetbrains.intellij") version "0.4.15"
}
apply(plugin = "java")
apply(plugin = "kotlin")
version = "1.16"
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61")
testImplementation("junit:junit:4.12")
}
intellij {
pluginName = "Gradle Dependencies Helper"
version = "LATEST-EAP-SNAPSHOT"
updateSinceUntilBuild = false
setPlugins("java", "Groovy", "gradle", "gradle-java", "Kotlin")
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
repositories {
mavenCentral()
}
tasks {
wrapper {
gradleVersion = "6.0.1"
}
}