-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
build.gradle
76 lines (65 loc) · 2.09 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
buildscript {
repositories {
mavenLocal()
gradlePluginPortal()
maven { url "https://maven-central.storage-download.googleapis.com/repos/central/data/" }
maven { url "https://maven.aliyun.com/nexus/content/groups/public/" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "de.undercouch:gradle-download-task:4.0.2"
}
}
plugins {
id "org.jetbrains.intellij" version "0.4.20"
id "com.adarshr.test-logger" version "2.0.0"
id "de.undercouch.download" version "4.0.2"
id "org.jetbrains.kotlin.jvm" version "1.3.71"
id "idea"
}
testlogger {
theme 'mocha'
}
repositories {
mavenLocal()
maven { url "https://maven-central.storage-download.googleapis.com/repos/central/data/" }
maven { url "https://maven.aliyun.com/nexus/content/groups/public/" }
maven { url "https://repo.eclipse.org/content/groups/releases/" }
maven { url "https://www.jetbrains.com/intellij-repository/releases" }
maven { url "https://www.jetbrains.com/intellij-repository/snapshots" }
}
intellij {
pluginName name
version ideaVersion
updateSinceUntilBuild = false
}
publishPlugin {
def authenticationToken = "$System.env.token"
token authenticationToken
channels publishChannels
}
idea {
project {
jdkName = javaVersion
languageLevel = javaVersion
}
}
dependencies {
implementation('io.timeandspace:cron-scheduler:0.1')
implementation('javazoom:jlayer:1.0.1')
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.11.+") {
exclude module: "kotlin-stdlib"
exclude module: "kotlin-stdlib-common"
exclude module: "kotlin-stdlib-jdk7"
exclude module: "kotlin-stdlib-jdk8"
exclude module: "kotlin-reflect"
}
}
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
[compileKotlin, compileTestKotlin]*.kotlinOptions {
languageVersion = kotlinLanguageVersion
apiVersion = kotlinTargetVersion
jvmTarget = javaVersion
freeCompilerArgs = ["-Xskip-runtime-version-check"]
}