123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>com.taais</groupId>
- <artifactId>taais-modules</artifactId>
- <version>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>jar</packaging>
- <artifactId>taais-system</artifactId>
- <description>
- system系统模块
- </description>
- <dependencies>
- <!-- 获取系统信息 -->
- <dependency>
- <groupId>com.github.oshi</groupId>
- <artifactId>oshi-core</artifactId>
- </dependency>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-encrypt</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-excel</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-json</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-log</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-orm</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-oss</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-security</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-springdoc</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-tenant</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-websocket</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|