Iteration 0

This commit is contained in:
Urban Modig
2025-10-04 21:21:41 +02:00
commit aef0a4c98f
14 changed files with 577 additions and 0 deletions

24
build.gradle Normal file
View File

@ -0,0 +1,24 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.4'
id 'io.spring.dependency-management' version '1.1.6'
}
group = 'se.urmo'
version = '0.0.1-SNAPSHOT'
java { toolchain { languageVersion = JavaLanguageVersion.of(21) } }
repositories { mavenCentral() }
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'
runtimeOnly 'org.postgresql:postgresql'
implementation 'org.flywaydb:flyway-core'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.test { useJUnitPlatform() }