-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (33 loc) · 996 Bytes
/
build.gradle
File metadata and controls
36 lines (33 loc) · 996 Bytes
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
buildscript {
repositories {
mavenCentral()
maven { setUrl("https://maven.vaadin.com/vaadin-prereleases") }
maven { setUrl("https://repo.spring.io/milestone") }
}
}
plugins {
id 'java'
id 'org.springframework.boot' version '4.0.0'
id 'io.spring.dependency-management' version '1.1.7'
id 'com.vaadin' version "$vaadinVersion"
}
repositories {
mavenCentral()
maven { setUrl("https://maven.vaadin.com/vaadin-prereleases") }
maven { setUrl("https://repo.spring.io/milestone") }
maven {
setUrl("https://maven.vaadin.com/vaadin-addons")
}
}
dependencies {
implementation('com.vaadin:vaadin-spring-boot-starter')
implementation 'com.vaadin:hilla-spring-boot-starter'
implementation 'org.parttio:line-awesome:1.1.0'
developmentOnly('org.springframework.boot:spring-boot-devtools', 'com.vaadin:vaadin-dev')
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
dependencyManagement {
imports {
mavenBom "com.vaadin:vaadin-bom:$vaadinVersion"
}
}