12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.rongwei</groupId>
- <artifactId>cx-file</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <groupId>com.rongwei</groupId>
- <artifactId>cx-file-entity</artifactId>
- <version>1.0-SNAPSHOT</version>
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0</url>
- </license>
- </licenses>
- <dependencies>
- <dependency>
- <groupId>com.rongwei</groupId>
- <artifactId>rw-common-config</artifactId>
- <version>1.1-SNAPSHOT</version>
- <exclusions>
- <exclusion>
- <artifactId>rw-common-license</artifactId>
- <groupId>com.rongwei</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.rongwei</groupId>
- <artifactId>rw-common-utils</artifactId>
- <version>1.1-SNAPSHOT</version>
- <exclusions>
- <exclusion>
- <artifactId>aspose-words</artifactId>
- <groupId>com.aspose</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>cn.afterturn</groupId>
- <artifactId>easypoi-annotation</artifactId>
- <version>4.2.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|