This repository has been archived on 2024-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
GHRepo/build.gradle

31 lines
661 B
Groovy
Raw Normal View History

2024-02-18 12:35:17 +01:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'pl.materus'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '21'
targetCompatibility = '21'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.wiremock:wiremock-standalone:3.3.1'
testImplementation 'io.projectreactor:reactor-test'
}
tasks.named('test') {
useJUnitPlatform()
}