forked from jonathanmccann/auction-alert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
90 lines (78 loc) · 3.33 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
apply plugin: "jacoco"
apply plugin: 'java'
apply plugin: 'war'
group = 'com.app'
version = '1.0'
description = "eBay Webapp"
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile files('lib/ebaycalls.jar')
compile files('lib/ebaysdkcore.jar')
compile files('lib/finding.jar')
compile group: 'com.google.code.gson', name: 'gson', version:'2.7'
compile group: 'com.sendgrid', name: 'sendgrid-java', version:'3.0.3'
compile group: 'com.stripe', name: 'stripe-java', version:'5.8.0'
compile group: 'javax.mail', name: 'mail', version:'1.4.7'
compile group: 'jstl', name: 'jstl', version:'1.2'
compile group: 'mysql', name: 'mysql-connector-java', version:'5.1.36'
compile group: 'net.sf.ehcache', name: 'ehcache', version:'2.10.2'
compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.0'
compile group: 'org.apache.shiro', name: 'shiro-core', version:'1.2.4'
compile group: 'org.apache.shiro', name: 'shiro-spring', version:'1.2.4'
compile group: 'org.apache.velocity', name: 'velocity', version:'1.7'
compile group: 'org.apache.velocity', name: 'velocity-tools', version:'2.0'
compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.7'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.7'
compile group: 'org.springframework', name: 'spring-context', version:'4.1.2.RELEASE'
compile group: 'org.springframework', name: 'spring-context-support', version:'4.1.2.RELEASE'
compile group: 'org.springframework', name: 'spring-jdbc', version:'4.1.2.RELEASE'
compile group: 'org.springframework', name: 'spring-test', version:'4.1.2.RELEASE'
compile group: 'org.springframework', name: 'spring-web', version:'4.1.2.RELEASE'
compile group: 'org.springframework', name: 'spring-webmvc', version:'4.1.2.RELEASE'
compile group: 'log4j', name: 'log4j', version:'1.2.16'
providedCompile group: 'javax.servlet', name: 'javax.servlet-api', version:'3.0.1'
testCompile group: 'junit', name: 'junit', version:'4.11'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version:'1.3'
testCompile group: 'org.mockito', name: 'mockito-core', version: '1.10.19'
testCompile group: 'org.powermock', name: 'powermock-api-mockito', version: '1.6.4'
testCompile group: 'org.powermock', name: 'powermock-api-support', version: '1.6.4'
testCompile group: 'org.powermock', name: 'powermock-core', version: '1.6.4'
testCompile group: 'org.powermock', name: 'powermock-module-javaagent', version: '1.6.4'
testCompile group: 'org.powermock', name: 'powermock-module-junit4', version: '1.6.4'
testCompile group: 'org.powermock', name: 'powermock-module-junit4-common', version: '1.6.4'
testCompile group: 'org.powermock', name: 'powermock-module-junit4-rule-agent', version: '1.6.4'
testCompile group: 'org.powermock', name: 'powermock-reflect', version: '1.6.4'
}
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
}
sourceSets {
main {
java {
srcDir 'src/java'
}
}
test {
java {
srcDir 'src/test'
}
}
}
test {
systemProperties System.getProperties()
systemProperties['user.dir'] = workingDir
jvmArgs += '-noverify'
testLogging {
exceptionFormat = 'full'
events "passed", "skipped", "failed"
}
jacoco {
append = false
destinationFile = file("$buildDir/jacoco/jacocoTest.exec")
classDumpFile = file("$buildDir/jacoco/classpathdumps")
}
}
war {
archiveName "ROOT.war"
}