-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
68 lines (66 loc) · 2.34 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
buildscript {
ext {
springBootVersion = '2.0.7.RELEASE'
springbootAdminVersion = '2.0.4'
}
ext['lombok.version'] = '1.18.2'
repositories {
mavenCentral()
maven { url('http://repo.spring.io/plugins-release') }
maven { url("https://plugins.gradle.org/m2/") }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'com.twigcodes'
sourceCompatibility = 1.8
targetCompatibility = 1.8
apply from: './gradle/docker.gradle'
repositories {
mavenCentral()
}
ext {
springCloudVersion = 'Finchley.SR2'
}
dependencies {
// implementation("org.jolokia:jolokia-core")
implementation("de.codecentric:spring-boot-admin-starter-server:${springbootAdminVersion}")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.cloud:spring-cloud-config-server")
implementation("org.springframework.cloud:spring-cloud-config-monitor")
implementation('org.springframework.cloud:spring-cloud-starter-bus-amqp')
implementation("org.springframework.cloud:spring-cloud-starter-stream-rabbit")
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.cloud:spring-cloud-starter-netflix-eureka-server")
runtime('org.springframework.boot:spring-boot-devtools')
annotationProcessor('org.projectlombok:lombok')
compileOnly('org.projectlombok:lombok')
compileOnly('org.springframework.boot:spring-boot-configuration-processor')
testImplementation('org.springframework.boot:spring-boot-starter-test')
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
configurations.compileOnly.extendsFrom(configurations.annotationProcessor)
def static getenv(path = ".env") {
def env = [:]
def file = new File(path)
if (file.exists()) {
file.eachLine { line ->
def (name, value) = line.tokenize("=")
env[name.trim()] = value.trim()
}
}
return env
}
bootRun {
getenv().each { name, value -> environment name, value }
systemProperties System.properties
}