forked from meissa/ModeratorElection
41 lines
1,014 B
Groovy
41 lines
1,014 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { setUrl("https://maven.vaadin.com/vaadin-prereleases") }
|
|
maven { setUrl("https://repo.spring.io/milestone") }
|
|
}
|
|
}
|
|
plugins {
|
|
id 'org.springframework.boot' version '3.1.5'
|
|
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
|
|
id 'java'
|
|
id 'com.vaadin'
|
|
}
|
|
|
|
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") }
|
|
}
|
|
|
|
configurations {
|
|
developmentOnly
|
|
runtimeClasspath {
|
|
extendsFrom developmentOnly
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation('com.vaadin:vaadin-spring-boot-starter')
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
|
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
|
}
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom "com.vaadin:vaadin-bom:$vaadinVersion"
|
|
}
|
|
}
|