forked from kingston-csj/mmorpg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (31 loc) · 1.2 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
// Apply the java plugin to add support for Java
apply plugin: 'java'
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
mavenLocal()
mavenCentral()
}
// In this section you declare the dependencies for your production and test code
dependencies {
compile 'org.slf4j:slf4j-api:1.7.21'
compile 'log4j:slf4j-api:1.2.17'
compile 'org.slf4j:slf4j-api:1.7.21'
compile 'com.google.code.gson:gson:2.8.0'
compile 'io.netty:netty-all:4.0.23.Final'
compile 'org.springframework:spring-context:4.3.7.RELEASE'
compile 'org.springframework:spring-jdbc:4.3.7.RELEASE'
compile 'org.springframework:spring-orm:4.3.7.RELEASE'
compile 'org.springframework:spring-test:4.3.7.RELEASE'
compile 'mysql:mysql-connector-java:5.1.6'
compile 'javax.persistence:persistence-api:1.0.2'
compile 'org.hibernate:hibernate-annotations:3.4.0.GA'
compile 'org.hibernate:hibernate-core:3.3.2.GA'
compile 'org.apache.commons:commons-lang3:3.1'
testCompile 'junit:junit:4.12'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}