2024-06-06 15:45:46 +00:00
|
|
|
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'
|
2024-06-19 15:04:54 +00:00
|
|
|
id 'com.vaadin' version '24.4.3'
|
2024-06-14 15:41:12 +00:00
|
|
|
id 'org.graalvm.buildtools.native' version '0.10.2'
|
2024-06-06 15:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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") }
|
|
|
|
}
|
|
|
|
|
2024-06-19 15:04:54 +00:00
|
|
|
ext {
|
|
|
|
set('vaadinVersion', '24.4.3')
|
|
|
|
}
|
|
|
|
|
2024-06-06 15:45:46 +00:00
|
|
|
configurations {
|
|
|
|
developmentOnly
|
|
|
|
runtimeClasspath {
|
|
|
|
extendsFrom developmentOnly
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-06-19 15:04:54 +00:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
|
|
implementation 'com.vaadin:vaadin-spring-boot-starter'
|
2024-06-06 15:45:46 +00:00
|
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
|
|
|
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
|
|
|
}
|
2024-06-19 15:04:54 +00:00
|
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
2024-06-06 15:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencyManagement {
|
|
|
|
imports {
|
|
|
|
mavenBom "com.vaadin:vaadin-bom:$vaadinVersion"
|
|
|
|
}
|
|
|
|
}
|
2024-06-13 10:33:25 +00:00
|
|
|
|
2024-06-19 15:04:54 +00:00
|
|
|
tasks.named('test') {
|
2024-06-13 10:33:25 +00:00
|
|
|
useJUnitPlatform()
|
2024-06-14 15:41:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
graalvmNative {
|
|
|
|
binaries {
|
|
|
|
main {
|
2024-06-20 13:09:08 +00:00
|
|
|
mainClass = 'com.ModeratoElection.MEApplication'
|
|
|
|
fallback = false
|
2024-06-14 15:41:12 +00:00
|
|
|
imageName.set('ModeratorElection')
|
|
|
|
javaLauncher.set(javaToolchains.launcherFor {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
|
|
//vendor.set(JvmVendorSpec.GRAAL_VM)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
testSupport = false
|
|
|
|
toolchainDetection = false
|
|
|
|
}
|
|
|
|
|