pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <groupId>org.example</groupId>
  6. <artifactId>UtilsDemo-Excel</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <dependencies>
  9. <dependency>
  10. <groupId>org.projectlombok</groupId>
  11. <artifactId>lombok</artifactId>
  12. </dependency>
  13. <dependency>
  14. <groupId>com.github.binarywang</groupId>
  15. <artifactId>weixin-java-miniapp</artifactId>
  16. <version>3.9.0</version>
  17. <scope>compile</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.github.binarywang</groupId>
  21. <artifactId>weixin-java-mp</artifactId>
  22. <version>3.9.0</version>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.github.binarywang</groupId>
  27. <artifactId>weixin-java-pay</artifactId>
  28. <version>3.9.0</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.springfox</groupId>
  33. <artifactId>springfox-swagger2</artifactId>
  34. <version>2.8.0</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>fastjson</artifactId>
  40. <version>1.2.6</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.github.pagehelper</groupId>
  45. <artifactId>pagehelper</artifactId>
  46. <version>5.1.4</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.sf.dozer</groupId>
  51. <artifactId>dozer</artifactId>
  52. <version>5.5.1</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. </dependencies>
  56. <parent>
  57. <groupId>org.example</groupId>
  58. <artifactId>UtilsDemo</artifactId>
  59. <version>1.0-SNAPSHOT</version>
  60. </parent>
  61. <name>UtilsDemo-Excel</name>
  62. <properties>
  63. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  64. </properties>
  65. </project>