29 lines
608 B
Groovy
29 lines
608 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.3.0-SNAPSHOT'
|
|
id 'io.spring.dependency-management' version '1.1.5'
|
|
}
|
|
|
|
group = 'com.example'
|
|
version = '3.2.0-SNAPSHOT'
|
|
|
|
java {
|
|
sourceCompatibility = '17'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://repo.spring.io/milestone' }
|
|
maven { url 'https://repo.spring.io/snapshot' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
implementation 'org.springframework.kafka:spring-kafka'
|
|
developmentOnly 'org.springframework.boot:spring-boot-docker-compose'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|