From c1aa8aaeb177385777785a5508f46f8e44aea173 Mon Sep 17 00:00:00 2001
From: ChenYan <3139166962@qq.com>
Date: Mon, 30 Dec 2024 11:38:22 +0800
Subject: [PATCH] =?UTF-8?q?build:=20=E5=B7=A5=E5=85=B7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
mcwl-resource/pom.xml | 74 -------------------
.../com/mcwl/McWlResourceApplication.java | 30 --------
2 files changed, 104 deletions(-)
delete mode 100644 mcwl-resource/src/main/java/com/mcwl/McWlResourceApplication.java
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" +
- " ''-' `'-' `-..-' ");
- }
-}