From 66ac1d35fd08c0e472d06b3bd350809495315041 Mon Sep 17 00:00:00 2001 From: liaozan Date: Sat, 23 Apr 2022 21:45:13 +0800 Subject: [PATCH] feat: add spring-boot-starter-validation in api module default --- pom.xml | 4 +++- src/main/resources/archetype-resources/.gitignore | 2 +- .../archetype-resources/__subModuleNamePrefix__-api/pom.xml | 5 +++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f7c6c7b..193a9d2 100644 --- a/pom.xml +++ b/pom.xml @@ -1,6 +1,8 @@ - + 4.0.0 com.schbrain.kp diff --git a/src/main/resources/archetype-resources/.gitignore b/src/main/resources/archetype-resources/.gitignore index 36648a3..81ecd4c 100644 --- a/src/main/resources/archetype-resources/.gitignore +++ b/src/main/resources/archetype-resources/.gitignore @@ -31,4 +31,4 @@ target/ Thumbs.db # log -logs +logs \ No newline at end of file diff --git a/src/main/resources/archetype-resources/__subModuleNamePrefix__-api/pom.xml b/src/main/resources/archetype-resources/__subModuleNamePrefix__-api/pom.xml index 8120ab0..5df8df5 100644 --- a/src/main/resources/archetype-resources/__subModuleNamePrefix__-api/pom.xml +++ b/src/main/resources/archetype-resources/__subModuleNamePrefix__-api/pom.xml @@ -18,6 +18,11 @@ ${groupId} ${subModuleNamePrefix}-common + + org.springframework.boot + spring-boot-starter-validation + provided + org.springframework.cloud spring-cloud-starter-openfeign -- GitLab