You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.3 KiB

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.afterturn</groupId>
  6. <artifactId>easypoi</artifactId>
  7. <version>4.1.0</version>
  8. </parent>
  9. <artifactId>easypoi-web</artifactId>
  10. <dependencies>
  11. <!--spring -->
  12. <dependency>
  13. <groupId>org.springframework</groupId>
  14. <artifactId>spring-web</artifactId>
  15. <scope>compile</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-webmvc</artifactId>
  20. <scope>compile</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-core</artifactId>
  25. <scope>compile</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>javax.servlet</groupId>
  29. <artifactId>servlet-api</artifactId>
  30. <scope>provided</scope>
  31. </dependency>
  32. <!-- PDF -->
  33. <dependency>
  34. <groupId>com.itextpdf</groupId>
  35. <artifactId>itextpdf</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.afterturn</groupId>
  40. <artifactId>easypoi-base</artifactId>
  41. </dependency>
  42. </dependencies>
  43. </project>