-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
62 lines (52 loc) · 1.46 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
buildscript {
ext {
materializecssVersion = '1.0.0-rc.1'
materialDesignIconsVersion = '3.0.1'
}
}
plugins {
id 'java'
id 'idea'
id 'eclipse'
id 'cn.bestwu.propdeps' version '0.0.10'
id 'cn.bestwu.propdeps-idea' version '0.0.10'
id 'cn.bestwu.propdeps-maven' version '0.0.10'
id 'cn.bestwu.propdeps-eclipse' version '0.0.10'
id 'io.franzbecker.gradle-lombok' version '1.14'
id 'org.springframework.boot' version '2.0.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
}
group 'daggerok'
version '0.0.1'
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
bootJar {
launchScript()
}
repositories {
mavenCentral()
}
compileJava.dependsOn(processResources)
dependencies {
implementation "org.webjars:materializecss:$materializecssVersion"
implementation "org.webjars:material-design-icons:$materialDesignIconsVersion"
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testAnnotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
idea {
module {
downloadSources = true
}
}
eclipse {
classpath {
downloadSources = true
}
}
defaultTasks('clean', 'build')
wrapper {
gradleVersion = '4.10'
distributionType = 'BIN'
}