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' } }