-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
46 lines (40 loc) · 1.15 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
buildscript {
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath('org.springframework.boot:spring-boot-gradle-plugin:1.3.2.RELEASE')
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
apply plugin: 'spring-boot'
project.ext {
implVersion = '1.0'
}
jar {
baseName = 'gamification_server'
version = '1.0-SNAPSHOT'
}
repositories {
jcenter()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("mysql:mysql-connector-java:5.1.34")
compile('org.projectlombok:lombok:1.16.6')
compile('com.googlecode.json-simple:json-simple:1.1.1')
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group:'org.springframework', name:'spring-test', version: '4.2.4.RELEASE'
testCompile('org.javatuples:javatuples:1.2')
testCompile('org.hamcrest:hamcrest-junit:2.0.0.0')
testCompile('org.apache.commons:commons-collections4:4.1')
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}