From fa54a0c642c7780610dfdee015956c1914db417e Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Mon, 16 Oct 2017 21:09:20 +0300 Subject: [PATCH] AllOpen: Add Validated to the list of annotations supported by kotlin-spring plugin (KT-20751) --- plugins/allopen/allopen-cli/src/AllOpenPlugin.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/allopen/allopen-cli/src/AllOpenPlugin.kt b/plugins/allopen/allopen-cli/src/AllOpenPlugin.kt index df1f76148d7..a7c352392e8 100644 --- a/plugins/allopen/allopen-cli/src/AllOpenPlugin.kt +++ b/plugins/allopen/allopen-cli/src/AllOpenPlugin.kt @@ -42,7 +42,8 @@ class AllOpenCommandLineProcessor : CommandLineProcessor { "org.springframework.transaction.annotation.Transactional", "org.springframework.scheduling.annotation.Async", "org.springframework.cache.annotation.Cacheable", - "org.springframework.boot.test.context.SpringBootTest")) + "org.springframework.boot.test.context.SpringBootTest", + "org.springframework.validation.annotation.Validated")) val ANNOTATION_OPTION = CliOption("annotation", "", "Annotation qualified names", required = false, allowMultipleOccurrences = true)