-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
50 lines (41 loc) · 1.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
buildscript {
ext {
springBootVersion = '2.0.4.RELEASE'
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
}
}
plugins {
id 'java'
id 'idea'
id 'maven'
id 'eclipse'
id 'io.franzbecker.gradle-lombok' version '1.14'
}
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'daggerok'
version = '0.0.2'
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.boot:spring-boot-starter-mustache')
compile('org.springframework.boot:spring-boot-starter-webflux')
compile('org.springframework.boot:spring-boot-starter-security')
compile('org.springframework.boot:spring-boot-starter-data-mongodb-reactive')
compile('de.flapdoodle.embed:de.flapdoodle.embed.mongo')
compile('org.webjars:webjars-locator:0.32-1')
compile('org.webjars:materializecss:0.100.2')
compile('org.webjars:material-design-icons:3.0.1')
compile('org.webjars:jquery:3.2.1')
compile('org.webjars:hammerjs:2.0.8')
runtime('org.springframework.boot:spring-boot-devtools')
testCompile('org.springframework.security:spring-security-test')
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('io.projectreactor:reactor-test')
}
defaultTasks 'clean', 'build'