-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (29 loc) · 1.27 KB
/
build.gradle
File metadata and controls
35 lines (29 loc) · 1.27 KB
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
apply plugin: 'java'
apply plugin: 'jetty'
apply plugin: 'jacoco'
apply plugin: 'war'
group = 'org.mybatis'
version = '6.0.2-SNAPSHOT'
description = 'JPetStore Demo 6'
sourceCompatibility = 1.5
targetCompatibility = 1.5
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version:'4.12'
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.10.19'
testCompile group: 'org.powermock', name: 'powermock-module-junit4', version:'1.6.2'
testCompile group: 'org.powermock', name: 'powermock-api-mockito', version:'1.6.2'
compile group: 'org.mybatis', name: 'mybatis', version:'3.3.0'
compile group: 'org.mybatis', name: 'mybatis-spring', version:'1.2.3'
compile group: 'org.springframework', name: 'spring-jdbc', version:'4.2.3.RELEASE'
compile group: 'org.springframework', name: 'spring-web', version:'4.2.3.RELEASE'
compile group: 'net.sourceforge.stripes', name: 'stripes', version:'1.6.0'
compile group: 'javax.servlet', name: 'jstl', version:'1.2'
compile group: 'log4j', name: 'log4j', version:'1.2.17'
compile group: 'org.hsqldb', name: 'hsqldb', version:'2.3.3'
providedCompile group: 'javax.servlet', name: 'jsp-api', version:'2.0'
}
build.dependsOn jacocoTestReport