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