pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>dmp-parent</artifactId>
  8. <groupId>com.persagy</groupId>
  9. <version>1.0.0</version>
  10. <relativePath>../dmp-parent</relativePath>
  11. </parent>
  12. <artifactId>dmp-common</artifactId>
  13. <version>1.0.0</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.projectlombok</groupId>
  17. <artifactId>lombok</artifactId>
  18. </dependency>
  19. <!--
  20. <dependency>
  21. <groupId>com.fasterxml.jackson.core</groupId>
  22. <artifactId>jackson-databind</artifactId>
  23. </dependency>
  24. -->
  25. <dependency>
  26. <groupId>cn.hutool</groupId>
  27. <artifactId>hutool-all</artifactId>
  28. </dependency>
  29. <!-- web -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>fastjson</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.poi</groupId>
  40. <artifactId>poi</artifactId>
  41. <version>4.1.2</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>poi-ooxml</artifactId>
  47. <version>4.1.2</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. </dependencies>
  51. </project>