This repository was archived by the owner on Aug 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
59 lines (46 loc) · 1.39 KB
/
Copy pathbuild.gradle
File metadata and controls
59 lines (46 loc) · 1.39 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
group 'balotenketo'
version '1.1-SNAPSHOT'
buildscript {
ext {
kotlinVersion = '1.1.1'
springBootVersion = '1.5.2.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}"
}
}
apply plugin: 'kotlin'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
apply plugin: 'application'
apply plugin: 'war'
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = 'balotenketo.balotaro.ApplicationKt'
repositories {
mavenCentral()
jcenter()
maven { url "http://repo.spring.io/libs-snapshot" }
maven { url "https://jitpack.io" }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}"
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-data-mongodb'
compile 'io.springfox:springfox-swagger-ui:2.4.0'
compile 'io.springfox:springfox-swagger2:2.4.0'
compile 'joda-time:joda-time:2.9.9'
compile 'com.github.jcornaz:kondorcet:v1.0.0'
providedRuntime "org.springframework.boot:spring-boot-starter-tomcat"
testCompile 'org.springframework.boot:spring-boot-starter-test'
}
test {
testLogging {
events "failed"
exceptionFormat "full"
}
}