123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>vip.xiaonuo</groupId>
- <artifactId>yqyc-system</artifactId>
- <version>3.0.0</version>
- </parent>
- <artifactId>snowy-web-app</artifactId>
- <packaging>jar</packaging>
- <description>主启动模块</description>
- <dependencies>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- </dependency>
-
-
-
-
-
-
-
-
-
-
-
-
- <dependency>
- <groupId>vip.xiaonuo</groupId>
- <artifactId>snowy-plugin-auth</artifactId>
- </dependency>
-
- <dependency>
- <groupId>vip.xiaonuo</groupId>
- <artifactId>snowy-plugin-biz</artifactId>
- </dependency>
-
- <dependency>
- <groupId>vip.xiaonuo</groupId>
- <artifactId>snowy-plugin-client</artifactId>
- </dependency>
-
- <dependency>
- <groupId>vip.xiaonuo</groupId>
- <artifactId>snowy-plugin-dev</artifactId>
- </dependency>
-
- <dependency>
- <groupId>vip.xiaonuo</groupId>
- <artifactId>snowy-plugin-gen</artifactId>
- </dependency>
-
- <dependency>
- <groupId>vip.xiaonuo</groupId>
- <artifactId>snowy-plugin-mobile</artifactId>
- </dependency>
-
- <dependency>
- <groupId>vip.xiaonuo</groupId>
- <artifactId>snowy-plugin-sys</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|