diff --git a/mcwl-resource/pom.xml b/mcwl-resource/pom.xml
index 2f15a70..a17ec97 100644
--- a/mcwl-resource/pom.xml
+++ b/mcwl-resource/pom.xml
@@ -22,79 +22,5 @@
mcwl-common
-
-
- org.springframework.boot
- spring-boot-devtools
- true
-
-
-
-
- io.springfox
- springfox-boot-starter
-
-
-
-
- io.swagger
- swagger-models
- 1.6.2
-
-
-
-
- mysql
- mysql-connector-java
-
-
-
-
- com.mcwl
- mcwl-framework
-
-
-
-
- com.mcwl
- mcwl-quartz
-
-
-
-
- com.mcwl
- mcwl-generator
-
-
-
-
-
-
- org.springframework.boot
- spring-boot-maven-plugin
- 2.5.15
-
- true
-
-
-
-
- repackage
-
-
-
-
-
- org.apache.maven.plugins
- maven-war-plugin
- 3.1.0
-
- false
- ${project.artifactId}
-
-
-
- ${project.artifactId}
-
diff --git a/mcwl-resource/src/main/java/com/mcwl/McWlResourceApplication.java b/mcwl-resource/src/main/java/com/mcwl/McWlResourceApplication.java
deleted file mode 100644
index ca863af..0000000
--- a/mcwl-resource/src/main/java/com/mcwl/McWlResourceApplication.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.mcwl;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
-
-/**
- * 启动程序
- *
- * @author mcwl
- */
-@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
-public class McWlResourceApplication
-{
- public static void main(String[] args)
- {
- // System.setProperty("spring.devtools.restart.enabled", "false");
- SpringApplication.run(McWlResourceApplication.class, args);
- System.out.println("(♥◠‿◠)ノ゙ 资源中心启动成功 ლ(´ڡ`ლ)゙ \n" +
- " .-------. ____ __ \n" +
- " | _ _ \\ \\ \\ / / \n" +
- " | ( ' ) | \\ _. / ' \n" +
- " |(_ o _) / _( )_ .' \n" +
- " | (_,_).' __ ___(_ o _)' \n" +
- " | |\\ \\ | || |(_,_)' \n" +
- " | | \\ `' /| `-' / \n" +
- " | | \\ / \\ / \n" +
- " ''-' `'-' `-..-' ");
- }
-}