forked from geraldtancl/veracode.plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (38 loc) · 1.32 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
//import com.sun.tools.doclets.internal.toolkit.util.Util
plugins {
id 'java'
// id 'org.jetbrains.intellij' version '0.4.10'
// id 'org.jetbrains.intellij' version '1.1.2'
id "org.jetbrains.intellij" version "1.3.0"
}
group 'com.veracode.cliang'
version 'release-1.2.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '2.2.0.201212191850-r'
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.6'
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
//compile file('libs/vosp-api-wrappers-java-19.6.5.8.jar')
testCompile group: 'junit', name: 'junit', version: '4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
// version = '2019.1.4'
// version = '2020.3.2'
// version = '2021.2.1'
version = '2021.2.2'
// version = '2021.2.3'
//version 'LATEST-EAP-SNAPSHOT'
// updateSinceUntilBuild false
}
patchPluginXml {
changeNotes = """
Add change notes here.<br/>
<em>most HTML tags may be used</em>"""
}