forked from andrepdo/findbugs-idea
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
54 lines (43 loc) · 1.06 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
#!groovy
plugins {
id "org.jetbrains.intellij" version "0.2.17"
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'maven'
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
intellij {
if (project.hasProperty("ijVersion")) {
version ijVersion
} else {
version '2017.1'
}
pluginName 'spotbugs-idea'
updateSinceUntilBuild false
type 'IC'
plugins 'git4idea'
}
runIde {
systemProperties(["jdk.util.zip.ensureTrailingSlash":false])
}
runIdea {
systemProperties(["jdk.util.zip.ensureTrailingSlash":false])
}
dependencies {
compile ('com.github.spotbugs:spotbugs:3.1.1') {
exclude group: 'xml-apis', module: 'xml-apis'
}
compile 'org.jsoup:jsoup:1.8.3'
compile fileTree(dir: "$project.rootDir/lib", include: "TableLayout-bin-*.jar")
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.6.2'
testCompile 'org.mockito:mockito-core:2.7.6'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.4.1'
}