1234567891011121314151617181920212223 |
- <?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">
- <parent>
- <artifactId>pdf-office-api</artifactId>
- <groupId>cn.kdan.pdf.office</groupId>
- <version>0.0.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>pdf-office-api-account</artifactId>
- <packaging>jar</packaging>
- <description>用户对内接口</description>
- <dependencies>
- <dependency>
- <groupId>cn.kdan.pdf.office</groupId>
- <artifactId>pdf-office-common</artifactId>
- <version>0.0.1</version>
- </dependency>
- </dependencies>
- </project>
|