first commit

This commit is contained in:
2026-01-30 14:25:12 +08:00
commit 8dd8d2668a
899 changed files with 90844 additions and 0 deletions

157
qingyun-admin/pom.xml Normal file
View File

@@ -0,0 +1,157 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>qingyun-plus</artifactId>
<groupId>com.qingyun</groupId>
<version>4.7.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>qingyun-admin</artifactId>
<description>
web服务入口
</description>
<dependencies>
<!-- spring-boot-devtools -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 表示依赖不会传递 -->
</dependency>
<!-- Mysql驱动包 -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!-- Oracle -->
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
</dependency>
<!-- PostgreSql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<!-- SqlServer -->
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
</dependency>
<!-- &lt;!&ndash; 核心模块&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>com.qingyun</groupId>-->
<!-- <artifactId>qingyun-framework</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-system</artifactId>
</dependency>
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-oss</artifactId>
</dependency>
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-core-config</artifactId>
</dependency>
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-data-permission</artifactId>
</dependency>
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-idempotent</artifactId>
</dependency>
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-mybatisplus</artifactId>
</dependency>
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-redis</artifactId>
</dependency>
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-service</artifactId>
</dependency>
<dependency>
<groupId>com.qingyun</groupId>
<artifactId>qingyun-swagger</artifactId>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<fork>true</fork> <!-- 如果没有该配置devtools不会生效 -->
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warName>${project.artifactId}</warName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>UTF-8</encoding>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>xls</nonFilteredFileExtension>
<nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
</plugins>
</build>
</project>