12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <artifactId>examcloud-core-print</artifactId>
- <packaging>pom</packaging>
- <parent>
- <groupId>cn.com.qmth.examcloud</groupId>
- <artifactId>examcloud-parent</artifactId>
- <version>${revision}</version>
- <relativePath>../examcloud-parent/pom.xml</relativePath>
- </parent>
- <modules>
- <module>examcloud-core-print-common</module>
- <module>examcloud-core-print-dao</module>
- <module>examcloud-core-print-service</module>
- <module>examcloud-core-print-provider</module>
- <module>examcloud-core-print-starter</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>4.1.2</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>4.1.2</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml-schemas</artifactId>
- <version>4.1.2</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|