| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <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>gw-cloud-platform-dcproj-pageoffice</artifactId>
- <groupId>cn.com.goldenwater</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>gw-cloud-platform-dcproj-po-api</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>cn.com.goldenwater</groupId>
- <artifactId>gw-cloud-platform-dcproj-po-model</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper</artifactId>
- <version>${pagehelper.versioin}</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>4.0.0</version>
- <scope>compile</scope>
- </dependency>
- <!--PageOfffice Maven私有库-->
- <dependency>
- <groupId>com.zhuozhengsoft</groupId>
- <artifactId>pageoffice</artifactId>
- <version>5.3.0.3</version>
- </dependency>
- </dependencies>
- </project>
|