123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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.rongwei</groupId>
- <artifactId>zhsw_service</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>zhsw-entity</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>3.0.5</version> <!-- 确保使用最新版本 -->
- </dependency>
- <dependency>
- <groupId>com.rongwei</groupId>
- <artifactId>rw-common-config</artifactId>
- <version>1.1-SNAPSHOT</version>
- <exclusions>
- <exclusion>
- <groupId>com.rongwei</groupId>
- <artifactId>rw-common-license</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.rongwei</groupId>
- <artifactId>rw-admin-common</artifactId>
- <version>1.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.rongwei</groupId>
- <artifactId>rw-common-utils</artifactId>
- <version>1.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.checkerframework</groupId>
- <artifactId>checker-qual</artifactId>
- <version>3.12.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|