Files
NeuroDock/API/build.gradle
Zacharias Zellén 943c8470a5
Some checks failed
build / build (push) Has been cancelled
Honestly speaking... No clue what the updates are :/
2026-01-17 14:30:26 +01:00

33 lines
820 B
Groovy

plugins {
id 'java'
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'me.zacharias'
version = '1.0-SNAPSHOT'
dependencies {
implementation project(":Core")
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.0-M1'
//implementation 'org.springframework.boot:spring-boot-starter-actuator'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//runtimeOnly('org.springframework.boot:spring-boot-starter-web')
}
test {
useJUnitPlatform()
}
jar{
manifest {
attributes 'Main-Class': 'me.zacharias.chat.api.APIApplication'
}
}