From c24e7a5930fccb0b4e8c20dc5364d4df18de0ea6 Mon Sep 17 00:00:00 2001 From: sdeleuze Date: Wed, 25 Apr 2018 11:20:21 +0200 Subject: [PATCH 1/2] Document Kotlin custom metadata generation See gh-12960 --- .../src/main/asciidoc/spring-boot-features.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 9083c13db6..18b93a1ccb 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -7773,6 +7773,11 @@ class KotlinExampleProperties { } ---- +In order to allow <> by using the annotation processor, +{kotlin-documentation}kapt.html[`kapt` should be configured] with the +`spring-boot-configuration-processor` dependency. + [[boot-features-kotlin-testing]] === Testing From 9cf8080a176026d19d181c54160c2d10a4b0bd90 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Wed, 25 Apr 2018 17:19:55 +0200 Subject: [PATCH 2/2] Polish "Document Kotlin custom metadata generation" Closes gh-12960 --- .../src/main/asciidoc/spring-boot-features.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 18b93a1ccb..b1403bcafa 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -7773,10 +7773,10 @@ class KotlinExampleProperties { } ---- -In order to allow <> by using the annotation processor, -{kotlin-documentation}kapt.html[`kapt` should be configured] with the -`spring-boot-configuration-processor` dependency. +TIP: To generate +<> using the annotation processor, {kotlin-documentation}kapt.html[`kapt` should +be configured] with the `spring-boot-configuration-processor` dependency. [[boot-features-kotlin-testing]]