forked from jshiell/checkstyle-idea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (28 loc) · 906 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
plugins {
id "org.jetbrains.intellij" version "0.0.39"
}
apply plugin: 'java'
apply plugin: 'org.jetbrains.intellij'
intellij {
version 'IC-15.0.6'
pluginName 'CheckStyle-IDEA'
updateSinceUntilBuild = false
}
sourceCompatibility = 1.8
version = '4.31.1'
task wrapper(type: Wrapper) {
gradleVersion = '2.14'
}
repositories {
mavenCentral()
}
dependencies {
compile(group: 'com.puppycrawl.tools', name: 'checkstyle', version: '7.1') {
exclude group: 'commons-logging', module: 'commons-logging'
}
compile group: 'commons-io', name: 'commons-io', version: '2.4'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
testCompile files("${System.properties['java.home']}/../lib/tools.jar")
}