-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (37 loc) · 844 Bytes
/
Copy pathbuild.gradle
File metadata and controls
42 lines (37 loc) · 844 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
40
41
42
plugins {
id 'org.jetbrains.intellij' version '0.4.1'
id 'org.jetbrains.kotlin.jvm' version '1.3.11'
}
group 'com.github.scrat98'
version '0.1'
repositories {
mavenCentral()
jcenter()
}
sourceSets {
main.kotlin.srcDirs += 'src/main/kotlin'
main.java.srcDirs += 'src/main/kotlin'
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation 'com.beust:klaxon:5.0.1'
implementation 'com.auth0:java-jwt:3.5.0'
compile 'commons-codec:commons-codec:1.11'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
intellij {
version '2018.3.1'
pluginName 'JWT Debugger'
}
patchPluginXml {
changeNotes """
First release. Implemented base layout and features"""
}
publishPlugin {
token intellijPublishToken
}