23 lines
658 B
Groovy
23 lines
658 B
Groovy
plugins {
|
|
id 'org.antora' version '1.0.0'
|
|
id 'io.spring.antora.generate-antora-yml' version '0.0.1'
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/docs.gradle"
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'kotlin-spring'
|
|
|
|
description = 'Spring Kafka Code Snippets For Docs'
|
|
|
|
dependencies {
|
|
implementation "org.springframework.boot:spring-boot-starter:$springBootVersion"
|
|
implementation project (':spring-kafka')
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
|
|
implementation 'com.fasterxml.jackson.core:jackson-core'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
}
|
|
|