-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
29 lines (25 loc) · 965 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
group 'nif'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'org.springframework:spring-context:4.3.1.RELEASE'
compile 'org.springframework:spring-web:4.3.1.RELEASE'
compile 'org.springframework:spring-webmvc:4.3.1.RELEASE'
compile 'org.springframework:spring-jdbc:4.3.1.RELEASE'
compile 'javax.servlet:servlet-api:2.5'
compile 'javax.servlet.jsp:jsp-api:2.1'
compile 'javax.servlet:jstl:1.2'
compile 'org.mariadb.jdbc:mariadb-java-client:1.5.9'
compile 'commons-dbcp:commons-dbcp:1.4'
compile 'org.mybatis:mybatis-spring:1.3.0'
compile 'org.mybatis:mybatis:3.4.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.1'
compile 'com.googlecode.json-simple:json-simple:1.1.1'
}