-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
63 lines (54 loc) · 1.93 KB
/
build.gradle
File metadata and controls
63 lines (54 loc) · 1.93 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
60
61
62
63
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id 'org.springframework.boot' version '2.7.15'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
ext {
mapstructVersion = "1.4.0.Beta2"
lombokVersion = "1.18.12"
}
//dependencyManagement {
// imports {
// mavenBom "org.springframework.cloud:spring-cloud-dependencies:2021.0.0"
// }
//}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
implementation ('org.springframework.cloud:spring-cloud-dataflow-server:2.11.0') {
exclude group: 'org.springframework.cloud', module: 'spring-cloud-dataflow-platform-cloudfoundry'
exclude group: 'io.pivotal', module: 'pivotal-cloudfoundry-client-reactor'
}
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.cloud:spring-cloud-dataflow-rest-client:2.11.0'
implementation 'de.appelgriepsch.logback:logback-gelf-appender:1.2.1'
//implementation 'org.mapstruct:mapstruct:1.4.2.Final'
compileOnly "org.mapstruct:mapstruct:${mapstructVersion}", "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}", "org.projectlombok:lombok:${lombokVersion}"
implementation 'mysql:mysql-connector-java:8.0.30'
testImplementation group: 'com.h2database', name: 'h2', version: '1.4.200'
}
group = 'com.springdataflow'
version = '0.0.1-SNAPSHOT'
description = 'test'
java.sourceCompatibility = JavaVersion.VERSION_11
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}