Files
spring-kafka/gradle/docs.gradle
Gary Russell c75d244965 Verify Doc Code Snippets Compile
* Verify Doc Code Snippets Compile
* Move snippets to a new (non-published) sub-project
* Suppress jar creation and publication
* Suppress Regexp checkstyle on Doc Snippets
* Add Java/Kotlin Toggle
* Compile Kotlin Snippets; Fix Checkstyle
* Fix Kotlin Syntax
* Remove runner() from Consumer app.
* Fix missing end tags.
* Topic configuration and other polishing.
* Fix Unused Import.
* Copy Code Snippets into the build dir.
* Fix spurious error messages; copy attributes to build.gradle; move asciidocs to spring-kafka-docs project.
* Fix ToC Synchronization; upgrade spring-doc-resources; add Maven/Gradle Toggle.
* Add `encoding` to `compileTestJava` to make encoding-specific tests OS-independent
* Remove redundant variables from the `index.adoc` since they are set in the plugin config in Gradle
* Fix typo for Kotlin code snippet
* Rework all the Kotlin samples to more Kotlin-idiomatic style
* Fix whitespace.

Co-authored-by: Artem Bilan <abilan@vmware.com>
2021-02-05 16:17:27 -05:00

17 lines
273 B
Groovy

configurations {
asciidoctorExt
}
dependencies {
asciidoctorExt("io.spring.asciidoctor:spring-asciidoctor-extensions-block-switch:0.5.0")
}
repositories {
maven {
url "https://repo.spring.io/release"
mavenContent {
includeGroup "io.spring.asciidoctor"
}
}
}