pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.zcxk</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.zcxk</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. <dependency>
  80. <groupId>org.apache.commons</groupId>
  81. <artifactId>commons-pool2</artifactId>
  82. </dependency>
  83. </dependencies>
  84. <properties>
  85. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  86. <maven.build.timestamp.format>yyyy-MM-dd_HH_mm</maven.build.timestamp.format>
  87. </properties>
  88. <build>
  89. <finalName>${project.artifactId}-${maven.build.timestamp}</finalName>
  90. </build>
  91. </project>