diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index 565c347..6d799a0 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -24,5 +24,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main/resources/archetype-resources/pom.xml b/src/main/resources/archetype-resources/pom.xml
index 409fea5..1435287 100644
--- a/src/main/resources/archetype-resources/pom.xml
+++ b/src/main/resources/archetype-resources/pom.xml
@@ -7,12 +7,13 @@
4.0.0
- org.springframework.boot
- spring-boot-starter-parent
- 1.5.9.RELEASE
+ com.loafle
+ maven_parent_spring_boot
+ 1.5.9-RELEASE
+
${groupId}
${artifactId}
${version}
@@ -21,16 +22,4 @@
${groupId}.${artifactId}
${artifactId} project for Spring Boot
-
- 3.0.0
-
-
-
- 1.8
- UTF-8
- UTF-8
- ${java.version}
- ${java.version}
-
-
\ No newline at end of file
diff --git a/src/main/resources/archetype-resources/src/main/java/__packageInPathFormat__/__artifactId__/Application.java b/src/main/resources/archetype-resources/src/main/java/__packageInPathFormat__/__artifactId__/Application.java
deleted file mode 100644
index 26ee376..0000000
--- a/src/main/resources/archetype-resources/src/main/java/__packageInPathFormat__/__artifactId__/Application.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package ${package}.${artifactId};
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-
-@SpringBootApplication
-public class Application {
-
- public static void main(String[] args) {
- SpringApplication.run(Application.class, args);
- }
-
-}
diff --git a/src/main/resources/archetype-resources/src/test/java/__packageInPathFormat__/__artifactId__/ApplicationTests.java b/src/main/resources/archetype-resources/src/test/java/__packageInPathFormat__/__artifactId__/ApplicationTests.java
deleted file mode 100644
index af99444..0000000
--- a/src/main/resources/archetype-resources/src/test/java/__packageInPathFormat__/__artifactId__/ApplicationTests.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package ${package}.${artifactId};
-
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.test.SpringApplicationConfiguration;
-import org.springframework.context.ApplicationContext;
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
-import org.springframework.web.context.WebApplicationContext;
-
-@RunWith(SpringJUnit4ClassRunner.class)
-@SpringApplicationConfiguration(classes = Application.class)
-public class ApplicationTests {
-
- @Autowired
- private ApplicationContext applicationContext;
-
- @Test
- public void testStart() throws Exception {
-
- }
-
-}
\ No newline at end of file