This commit is contained in:
2026-02-16 13:38:31 +01:00
commit 43de3e9747
12 changed files with 456 additions and 0 deletions

29
build.gradle Normal file
View File

@@ -0,0 +1,29 @@
plugins {
id 'java'
id 'org.springframework.boot' version '4.0.2'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'dev.brammie15'
version = '0.0.1-SNAPSHOT'
description = 'Example project for assignment'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
tasks.named('test') {
useJUnitPlatform()
}