-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (21 loc) · 781 Bytes
/
build.gradle
File metadata and controls
26 lines (21 loc) · 781 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
group 'kr.ac.kr.jejunu'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.8
ext.springVersion = '4.3.8.RELEASE'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile 'mysql:mysql-connector-java:5.1.37'
compile "org.springframework:spring-context:${springVersion}"
compile "org.springframework:spring-aop:${springVersion}"
compile "org.springframework:spring-beans:${springVersion}"
compile "org.springframework:spring-core:${springVersion}"
compile "org.springframework:spring-expression:${springVersion}"
compile "org.springframework:spring-jdbc:${springVersion}"
compile "org.springframework:spring-tx:${springVersion}"
testCompile group: 'junit', name: 'junit', version: '4.11'
}