pom.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <parent>
  6. <artifactId>platform</artifactId>
  7. <groupId>com.huaxu</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sms_water</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.hutool</groupId>
  15. <artifactId>hutool-all</artifactId>
  16. <version>5.4.5</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.httpcomponents</groupId>
  20. <artifactId>httpclient</artifactId>
  21. <version>4.5.6</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.huaxu</groupId>
  25. <artifactId>common</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>org.springframework.security.oauth.boot</groupId>
  30. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>easyexcel</artifactId>
  37. <version>2.2.6</version>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>fastjson</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. </exclusion>
  47. <exclusion>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot</artifactId>
  50. </exclusion>
  51. <exclusion>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.poi</groupId>
  59. <artifactId>poi-scratchpad</artifactId>
  60. <version>4.0.1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.cloud</groupId>
  64. <artifactId>spring-cloud-starter-openfeign</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-amqp</artifactId>
  69. </dependency>
  70. <!-- mongo db-->
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-quartz</artifactId>
  78. </dependency>
  79. </dependencies>
  80. <properties>
  81. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  82. <maven.build.timestamp.format>yyyy-MM-dd_HH_mm</maven.build.timestamp.format>
  83. </properties>
  84. <build>
  85. <finalName>${project.artifactId}-${maven.build.timestamp}</finalName>
  86. </build>
  87. </project>