forked from sodalabsab/cloud-run-pipeline-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (47 loc) · 1.6 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.0'
id 'io.spring.dependency-management' version '1.1.0'
id 'com.vaadin' version '24.0.5'
id 'org.springdoc.openapi-gradle-plugin' version '1.6.0'
}
group = 'se.sodalabs'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
maven { url = "https://maven.vaadin.com/vaadin-addons" }
}
springBoot {
buildInfo()
}
jar {
enabled = false
}
vaadin {
productionMode = true
}
bootJar {
manifest {
attributes 'Start-Class': 'se.sodalabs.demo.DemoApplication'
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.15.0'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.15.0'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
implementation 'com.vaadin:vaadin:24.0.5'
implementation 'com.vaadin:vaadin-testbench-junit5:24.0.5'
implementation 'com.vaadin:vaadin-spring-boot-starter:24.0.5'
implementation 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
defaultTasks("clean", "vaadinBuildFrontend", "build")
tasks.named('test') {
useJUnitPlatform()
}