diff --git a/intelliJ/remote-debugging/.idea/runConfigurations/Remote_Debugger.xml b/intelliJ/remote-debugging/.idea/runConfigurations/Remote_Debugger.xml
deleted file mode 100644
index ca11791a08..0000000000
--- a/intelliJ/remote-debugging/.idea/runConfigurations/Remote_Debugger.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/intelliJ/remote-debugging/CONTRIBUTING.adoc b/intelliJ/remote-debugging/CONTRIBUTING.adoc
deleted file mode 100644
index a97e428a48..0000000000
--- a/intelliJ/remote-debugging/CONTRIBUTING.adoc
+++ /dev/null
@@ -1,2 +0,0 @@
-If you have not previously done so, please fill out and
-submit the https://cla.pivotal.io/sign/spring[Contributor License Agreement].
\ No newline at end of file
diff --git a/intelliJ/remote-debugging/LICENSE.code.txt b/intelliJ/remote-debugging/LICENSE.code.txt
deleted file mode 100644
index 4b5cde9fd2..0000000000
--- a/intelliJ/remote-debugging/LICENSE.code.txt
+++ /dev/null
@@ -1,16 +0,0 @@
- All code in this repository is:
- =======================================================================
- Copyright (c) 2013 GoPivotal, Inc. All Rights Reserved
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- https://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
diff --git a/intelliJ/remote-debugging/LICENSE.writing.txt b/intelliJ/remote-debugging/LICENSE.writing.txt
deleted file mode 100644
index 9d21229f84..0000000000
--- a/intelliJ/remote-debugging/LICENSE.writing.txt
+++ /dev/null
@@ -1 +0,0 @@
-Except where otherwise noted, this work is licensed under https://creativecommons.org/licenses/by-nd/3.0/
diff --git a/intelliJ/remote-debugging/pom.xml b/intelliJ/remote-debugging/pom.xml
index b8845e49d2..707bdb1159 100644
--- a/intelliJ/remote-debugging/pom.xml
+++ b/intelliJ/remote-debugging/pom.xml
@@ -1,6 +1,6 @@
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0com.baeldung
diff --git a/intelliJ/remote-debugging/src/main/java/hello/Application.java b/intelliJ/remote-debugging/src/main/java/hello/Application.java
deleted file mode 100644
index 73b55f933b..0000000000
--- a/intelliJ/remote-debugging/src/main/java/hello/Application.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package hello;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.scheduling.annotation.EnableScheduling;
-
-@SpringBootApplication
-@EnableScheduling
-public class Application {
-
- public static void main(String[] args) {
- SpringApplication.run(Application.class);
- }
-}
diff --git a/intelliJ/remote-debugging/src/main/java/hello/ScheduledTasks.java b/intelliJ/remote-debugging/src/main/java/hello/ScheduledTasks.java
deleted file mode 100644
index de1f6eebeb..0000000000
--- a/intelliJ/remote-debugging/src/main/java/hello/ScheduledTasks.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright 2012-2015 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * https://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package hello;
-
-import java.text.SimpleDateFormat;
-import java.util.Date;
-
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.scheduling.annotation.Scheduled;
-import org.springframework.stereotype.Component;
-
-@Component
-public class ScheduledTasks {
-
- private static final Logger log = LoggerFactory.getLogger(ScheduledTasks.class);
-
- private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
-
- @Scheduled(fixedRate = 5000)
- public void reportCurrentTime() {
- log.info("The time is now {}", dateFormat.format(new Date()));
- }
-}