forked from vsch/idea-multimarkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
78 lines (67 loc) · 2.2 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
77
78
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.21'
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
}
repositories {
mavenCentral()
mavenLocal()
flatDir {
dirs 'lib'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compileOnly name: "jfxrt"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "com.vladsch.flexmark:flexmark-all:$flexmarkVersion"
implementation "com.vladsch.flexmark:flexmark-util:$flexmarkVersion"
implementation "com.vladsch.flexmark:flexmark-tree-iteration:$flexmarkVersion"
implementation "com.vladsch.flexmark:flexmark-test-util:$flexmarkVersion"
implementation "com.vladsch.flexmark:flexmark-ext-zzzzzz:$flexmarkVersion"
implementation "com.vladsch.flexmark:flexmark-ext-spec-example:$flexmarkVersion"
implementation "com.jgoodies:jgoodies-common:1.4.0"
implementation "com.vladsch.javafx-webview-debugger:javafx-webview-debugger:0.8.6"
implementation "com.vladsch.boxed-json:boxed-json:0.5.32"
implementation "com.vladsch.reverse-regex:reverse-regex-util:0.3.6"
implementation "commons-io:commons-io:2.4"
implementation "org.jetbrains:annotations:15.0"
implementation "org.jsoup:jsoup:1.11.3"
implementation name: "plantuml-jar-asl-1.2020.6"
implementation name: "plugin-util"
implementation name: "plugin-test-util"
}
ant.importBuild 'release.xml'
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs = ['-Xjvm-default=enable']
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs = ['-Xjvm-default=enable']
}
}
sourceSets {
main {
resources {
srcDirs = ['src/main/resources', 'src/main/resources-flex',]
}
}
test {
resources {
srcDirs = ['src/main/resources', 'src/main/resources-flex', 'src/test/resources', 'src/test/java']
}
}
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
updateSinceUntilBuild = false
version '202.7319.50'
// version '2020.2.1'
plugins = [
"IntelliLang", "git4idea", "java", "grazie", "platform-images"
]
}