Files
spring-kafka/samples/sample-07/build.gradle
Soby Chacko acead71a6b Cleanup - sample 07 (new consumer protocol)
* Remove unnecessary test dependencies
* Update @since tag
2024-05-20 11:31:54 -04:00

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()
}