forked from tsun1215/Rec15Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (32 loc) · 711 Bytes
/
build.gradle
File metadata and controls
41 lines (32 loc) · 711 Bytes
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
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'eclipse'
apply plugin: 'findbugs'
apply plugin: 'checkstyle'
mainClassName = 'edu.cmu.cs.cs214.rec15.Main'
test.testLogging { exceptionFormat "full"; events "failed", "passed", "skipped" }
configurations.all {
resolutionStrategy {
force 'org.ow2.asm:asm:5.0.3'
forcedModules = [ 'org.ow2.asm:asm:5.0.3' ]
}
}
findbugs {
reportLevel = "high"
toolVersion = "3.0.0"
}
checkstyle {
toolVersion = "6.2"
sourceSets = [sourceSets.main]
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
}
buildscript{
repositories {
mavenCentral()
}
}