-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
77 lines (67 loc) · 2.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
buildscript {
ext {
kotlinVersion = '1.0.5'
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
}
repositories {
mavenCentral()
maven {
url "https://repo.spring.io/libs-snapshot"
}
}
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'
mainClassName = "com.abekirev.dbd.ChessApplication"
jar {
baseName = 'chess'
version = '0.0.1-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven {
url "http://dl.bintray.com/jetbrains/spek"
}
maven {
url "http://repository.jetbrains.com/kotlin-nosql"
}
maven {
url "https://repo.spring.io/libs-snapshot"
}
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.boot:spring-boot-starter-aop')
compile('org.springframework.boot:spring-boot-starter-cache')
compile('org.springframework.boot:spring-boot-starter-mail')
compile('org.springframework.boot:spring-boot-starter-security')
compile("org.springframework.boot:spring-boot-starter-data-mongodb")
// compile('org.springframework.session:spring-session')
compile('org.springframework.boot:spring-boot-starter-thymeleaf')
compile('org.springframework.boot:spring-boot-starter-validation')
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.springframework.boot:spring-boot-starter-websocket')
compile('nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.4.0')
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'org.jsoup', name: 'jsoup', version: '1.10.1'
compile group: 'one.util', name: 'streamex', version: '0.6.4'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.5'
compile 'org.mongodb:mongodb-driver:3.4.1'
compile("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
// compile('org.jetbrains.kotlin:kotlin-nosql-mongodb:0.1-SNAPSHOT')
compile('org.funktionale:funktionale:0.9.5')
compile group: 'io.reactivex', name: 'rxkotlin', version: '0.60.0'
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('org.jetbrains.spek:spek-api:1.0.89')
testCompile('com.nhaarman:mockito-kotlin:0.7.0')
}