1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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-demo</artifactId>
- <description>
- demo模块
- </description>
- <dependencies>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-springdoc</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-excel</artifactId>
- </dependency>
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-log</artifactId>
- </dependency>
- </dependencies>
- </project>
|