From 70e90bf9bd6514185c1984acde76fbb1ee3c9532 Mon Sep 17 00:00:00 2001 From: mthomas Date: Wed, 19 Feb 2020 01:40:34 -0600 Subject: [PATCH] - Remove the README.md file - Remove .gitignore - Aggregate this module in the root pom.xml so that it is integrated into the automated builds. --- pom.xml | 3 ++- spring-threads/.gitignore | 12 ------------ spring-threads/README.md | 7 ------- 3 files changed, 2 insertions(+), 20 deletions(-) delete mode 100644 spring-threads/.gitignore delete mode 100644 spring-threads/README.md diff --git a/pom.xml b/pom.xml index 6e6316edd6..15b695b9ad 100644 --- a/pom.xml +++ b/pom.xml @@ -641,7 +641,7 @@ spring-boot-parent spring-boot-rest spring-boot-security - + spring-caching spring-cloud @@ -728,6 +728,7 @@ spring-static-resources spring-swagger-codegen + spring-threads spring-thymeleaf spring-thymeleaf-2 diff --git a/spring-threads/.gitignore b/spring-threads/.gitignore deleted file mode 100644 index 08259abdaf..0000000000 --- a/spring-threads/.gitignore +++ /dev/null @@ -1,12 +0,0 @@ -RemoteSystemsTempFiles/ -.classpath -.project -.settings/ -bin/ -.metadata/ -docs/*.autosave -.recommenders/ -build/ -.gradle/ -.DS_Store -.idea/ \ No newline at end of file diff --git a/spring-threads/README.md b/spring-threads/README.md deleted file mode 100644 index 8c496f17be..0000000000 --- a/spring-threads/README.md +++ /dev/null @@ -1,7 +0,0 @@ -## Spring Threads - -This module contains articles about threading using thread pools, specifically Spring's ThreadPoolTaskExecutor - -### Relevant Articles: -- [ThreadPoolTaskExecutor corePoolSize vs. maxPoolSize](https://baeldung.com/threadpool-task-executor-corepoolsize-maxpoolsize) -