From b8c0923f2344ab6dcf1972cf0fbb06d5a1787084 Mon Sep 17 00:00:00 2001 From: Tom Hombergs Date: Fri, 5 Jun 2020 07:18:14 +1000 Subject: [PATCH] rename module to "spring-boot-springdoc" --- build-all.sh | 3 +- spring-boot/spring-boot-codefirst/.gitignore | 32 ------------------ .../build.gradle | 0 .../gradle/wrapper/gradle-wrapper.jar | Bin .../gradle/wrapper/gradle-wrapper.properties | 0 .../gradlew | 0 .../gradlew.bat | 0 .../settings.gradle | 0 .../codefirst/CodeFirstApplication.java | 0 .../src/main/resources/application.yml | 0 .../codefirst/CodeFirstApplicationTests.java | 0 11 files changed, 2 insertions(+), 33 deletions(-) mode change 100644 => 100755 build-all.sh delete mode 100644 spring-boot/spring-boot-codefirst/.gitignore rename spring-boot/{spring-boot-codefirst => spring-boot-springdoc}/build.gradle (100%) rename spring-boot/{spring-boot-codefirst => spring-boot-springdoc}/gradle/wrapper/gradle-wrapper.jar (100%) rename spring-boot/{spring-boot-codefirst => spring-boot-springdoc}/gradle/wrapper/gradle-wrapper.properties (100%) rename spring-boot/{spring-boot-codefirst => spring-boot-springdoc}/gradlew (100%) mode change 100644 => 100755 rename spring-boot/{spring-boot-codefirst => spring-boot-springdoc}/gradlew.bat (100%) rename spring-boot/{spring-boot-codefirst => spring-boot-springdoc}/settings.gradle (100%) rename spring-boot/{spring-boot-codefirst => spring-boot-springdoc}/src/main/java/io/reflectoring/codefirst/CodeFirstApplication.java (100%) rename spring-boot/{spring-boot-codefirst => spring-boot-springdoc}/src/main/resources/application.yml (100%) rename spring-boot/{spring-boot-codefirst => spring-boot-springdoc}/src/test/java/io/reflectoring/codefirst/CodeFirstApplicationTests.java (100%) diff --git a/build-all.sh b/build-all.sh old mode 100644 new mode 100755 index d6722fc..5d4d337 --- a/build-all.sh +++ b/build-all.sh @@ -54,6 +54,7 @@ build_maven_module() { } } +build_gradle_module "spring-boot/spring-boot-springdoc" build_maven_module "spring-boot/dependency-injection" build_maven_module "spring-boot/spring-boot-openapi" build_maven_module "spring-boot/data-migration/liquibase" @@ -100,4 +101,4 @@ build_gradle_module "tools/jacoco" echo "" echo "+++" echo "+++ ALL MODULES SUCCESSFUL" -echo "+++" \ No newline at end of file +echo "+++" diff --git a/spring-boot/spring-boot-codefirst/.gitignore b/spring-boot/spring-boot-codefirst/.gitignore deleted file mode 100644 index 6c01878..0000000 --- a/spring-boot/spring-boot-codefirst/.gitignore +++ /dev/null @@ -1,32 +0,0 @@ -HELP.md -.gradle -build/ -!gradle/wrapper/gradle-wrapper.jar -!**/src/main/** -!**/src/test/** - -### STS ### -.apt_generated -.classpath -.factorypath -.project -.settings -.springBeans -.sts4-cache - -### IntelliJ IDEA ### -.idea -*.iws -*.iml -*.ipr -out/ - -### NetBeans ### -/nbproject/private/ -/nbbuild/ -/dist/ -/nbdist/ -/.nb-gradle/ - -### VS Code ### -.vscode/ diff --git a/spring-boot/spring-boot-codefirst/build.gradle b/spring-boot/spring-boot-springdoc/build.gradle similarity index 100% rename from spring-boot/spring-boot-codefirst/build.gradle rename to spring-boot/spring-boot-springdoc/build.gradle diff --git a/spring-boot/spring-boot-codefirst/gradle/wrapper/gradle-wrapper.jar b/spring-boot/spring-boot-springdoc/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from spring-boot/spring-boot-codefirst/gradle/wrapper/gradle-wrapper.jar rename to spring-boot/spring-boot-springdoc/gradle/wrapper/gradle-wrapper.jar diff --git a/spring-boot/spring-boot-codefirst/gradle/wrapper/gradle-wrapper.properties b/spring-boot/spring-boot-springdoc/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from spring-boot/spring-boot-codefirst/gradle/wrapper/gradle-wrapper.properties rename to spring-boot/spring-boot-springdoc/gradle/wrapper/gradle-wrapper.properties diff --git a/spring-boot/spring-boot-codefirst/gradlew b/spring-boot/spring-boot-springdoc/gradlew old mode 100644 new mode 100755 similarity index 100% rename from spring-boot/spring-boot-codefirst/gradlew rename to spring-boot/spring-boot-springdoc/gradlew diff --git a/spring-boot/spring-boot-codefirst/gradlew.bat b/spring-boot/spring-boot-springdoc/gradlew.bat similarity index 100% rename from spring-boot/spring-boot-codefirst/gradlew.bat rename to spring-boot/spring-boot-springdoc/gradlew.bat diff --git a/spring-boot/spring-boot-codefirst/settings.gradle b/spring-boot/spring-boot-springdoc/settings.gradle similarity index 100% rename from spring-boot/spring-boot-codefirst/settings.gradle rename to spring-boot/spring-boot-springdoc/settings.gradle diff --git a/spring-boot/spring-boot-codefirst/src/main/java/io/reflectoring/codefirst/CodeFirstApplication.java b/spring-boot/spring-boot-springdoc/src/main/java/io/reflectoring/codefirst/CodeFirstApplication.java similarity index 100% rename from spring-boot/spring-boot-codefirst/src/main/java/io/reflectoring/codefirst/CodeFirstApplication.java rename to spring-boot/spring-boot-springdoc/src/main/java/io/reflectoring/codefirst/CodeFirstApplication.java diff --git a/spring-boot/spring-boot-codefirst/src/main/resources/application.yml b/spring-boot/spring-boot-springdoc/src/main/resources/application.yml similarity index 100% rename from spring-boot/spring-boot-codefirst/src/main/resources/application.yml rename to spring-boot/spring-boot-springdoc/src/main/resources/application.yml diff --git a/spring-boot/spring-boot-codefirst/src/test/java/io/reflectoring/codefirst/CodeFirstApplicationTests.java b/spring-boot/spring-boot-springdoc/src/test/java/io/reflectoring/codefirst/CodeFirstApplicationTests.java similarity index 100% rename from spring-boot/spring-boot-codefirst/src/test/java/io/reflectoring/codefirst/CodeFirstApplicationTests.java rename to spring-boot/spring-boot-springdoc/src/test/java/io/reflectoring/codefirst/CodeFirstApplicationTests.java