pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.0.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.zcxk.zoniot</groupId>
  12. <artifactId>iot-data-processor</artifactId>
  13. <version>0.0.1</version>
  14. <name>iot-data-processor</name>
  15. <description>物联网数据处理中心,包含抄表、告警等业务</description>
  16. <properties>
  17. <maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <skipTests>true</skipTests>
  22. </properties>
  23. <dependencies>
  24. <!-- Common包-->
  25. <dependency>
  26. <groupId>com.zcxk.zoniot</groupId>
  27. <artifactId>smart-city-common</artifactId>
  28. <version>0.0.1</version>
  29. </dependency>
  30. <!-- MongoDB -->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  34. </dependency>
  35. <!-- Redis -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-redis</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.commons</groupId>
  42. <artifactId>commons-pool2</artifactId>
  43. </dependency>
  44. <!-- MySQL -->
  45. <dependency>
  46. <groupId>mysql</groupId>
  47. <artifactId>mysql-connector-java</artifactId>
  48. </dependency>
  49. <!-- Druid -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid-spring-boot-starter</artifactId>
  53. <version>1.1.9</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-lang3</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-beanutils</groupId>
  61. <artifactId>commons-beanutils</artifactId>
  62. <version>1.9.3</version>
  63. </dependency>
  64. <!-- MyBatis -->
  65. <dependency>
  66. <groupId>org.mybatis.spring.boot</groupId>
  67. <artifactId>mybatis-spring-boot-starter</artifactId>
  68. <version>1.3.2</version>
  69. </dependency>
  70. <!-- Lombok -->
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. <optional>true</optional>
  75. </dependency>
  76. <!-- FastJSON -->
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>fastjson</artifactId>
  80. <version>1.2.41</version>
  81. </dependency>
  82. <!-- Kafka -->
  83. <dependency>
  84. <groupId>org.springframework.kafka</groupId>
  85. <artifactId>spring-kafka</artifactId>
  86. </dependency>
  87. <!-- Apache HTTPClient -->
  88. <dependency>
  89. <groupId>org.apache.httpcomponents</groupId>
  90. <artifactId>httpclient</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-test</artifactId>
  95. <scope>test</scope>
  96. <exclusions>
  97. <exclusion>
  98. <groupId>org.junit.vintage</groupId>
  99. <artifactId>junit-vintage-engine</artifactId>
  100. </exclusion>
  101. </exclusions>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-maven-plugin</artifactId>
  109. </plugin>
  110. </plugins>
  111. </build>
  112. </project>