pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>examcloud-core-print</artifactId>
  6. <packaging>pom</packaging>
  7. <parent>
  8. <groupId>cn.com.qmth.examcloud</groupId>
  9. <artifactId>examcloud-parent</artifactId>
  10. <version>${revision}</version>
  11. <relativePath>../examcloud-parent/pom.xml</relativePath>
  12. </parent>
  13. <modules>
  14. <module>examcloud-core-print-common</module>
  15. <module>examcloud-core-print-dao</module>
  16. <module>examcloud-core-print-service</module>
  17. <module>examcloud-core-print-provider</module>
  18. <module>examcloud-core-print-starter</module>
  19. </modules>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.apache.poi</groupId>
  24. <artifactId>poi</artifactId>
  25. <version>4.1.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.poi</groupId>
  29. <artifactId>poi-ooxml</artifactId>
  30. <version>4.1.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.poi</groupId>
  34. <artifactId>poi-ooxml-schemas</artifactId>
  35. <version>4.1.2</version>
  36. </dependency>
  37. </dependencies>
  38. </dependencyManagement>
  39. </project>