-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (37 loc) · 974 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.26'
}
group 'com.github.lppedd'
version '0.2.5'
sourceCompatibility = JavaVersion.VERSION_14
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
annotationProcessor 'com.github.bsideup.jabel:jabel-javac-plugin:0.3.0'
}
intellij {
version 'IU-2019.2'
downloadSources true
plugins = [
'com.github.lppedd.idea-conventional-commit:0.15.3',
'JavaScriptLanguage',
'AngularJS'
]
}
patchPluginXml {
version project.version
sinceBuild '192'
untilBuild '203.*'
changeNotes = new File("change_notes/${version.replace('.', '_')}.html").getText('UTF-8')
pluginDescription = new File("plugin_description.html").getText('UTF-8')
}
compileJava {
options.fork = true
options.compilerArgs = [
"--release", "8"
]
}