pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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>snws-monitor</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>snws-monitor-boot</artifactId>
  12. <version>1.0.0</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.tofly</groupId>
  16. <artifactId>snws-monitor-api</artifactId>
  17. <version>1.0.0</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.tofly</groupId>
  21. <artifactId>common-core</artifactId>
  22. <version>1.0.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.poi</groupId>
  26. <artifactId>poi-ooxml</artifactId>
  27. <version>4.0.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.tofly</groupId>
  31. <artifactId>common-redis</artifactId>
  32. <version>1.0.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.pagehelper</groupId>
  36. <artifactId>pagehelper</artifactId>
  37. <version>5.3.0</version>
  38. </dependency>
  39. <!-- springboot 整合 hibernate validator 校验 -->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-validation</artifactId>
  43. </dependency>
  44. <!-- <dependency>-->
  45. <!-- <groupId>org.springframework.cloud</groupId>-->
  46. <!-- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>-->
  47. <!-- <version>2.1.3.RELEASE</version>-->
  48. <!-- </dependency>-->
  49. <dependency>
  50. <groupId>com.tofly</groupId>
  51. <artifactId>snws-base-api</artifactId>
  52. <version>1.0.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-freemarker</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>junit</groupId>
  60. <artifactId>junit</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.tofly</groupId>
  65. <artifactId>common-ftp</artifactId>
  66. <version>1.0.0</version>
  67. <scope>compile</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.itextpdf</groupId>
  71. <artifactId>itextpdf</artifactId>
  72. <version>5.5.13.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.httpcomponents</groupId>
  76. <artifactId>httpcore</artifactId>
  77. <version>4.4.11</version>
  78. </dependency>
  79. <!-- 海康对接maven -->
  80. <dependency>
  81. <groupId>com.hikvision.ga</groupId>
  82. <artifactId>artemis-http-client</artifactId>
  83. <version>1.1.3</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>net.sf.jacob-project</groupId>
  87. <artifactId>jacob</artifactId>
  88. <version>1.14.3</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework</groupId>
  92. <artifactId>spring-test</artifactId>
  93. </dependency>
  94. <!-- Mqtt -->
  95. <dependency>
  96. <groupId>org.springframework.integration</groupId>
  97. <artifactId>spring-integration-mqtt</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.eclipse.paho</groupId>
  101. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  102. <version>1.2.4</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.fasterxml.jackson.core</groupId>
  106. <artifactId>jackson-databind</artifactId>
  107. <version>2.10.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.fasterxml.jackson.core</groupId>
  111. <artifactId>jackson-core</artifactId>
  112. <version>2.10.0</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.fasterxml.jackson.core</groupId>
  116. <artifactId>jackson-annotations</artifactId>
  117. <version>2.10.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.eclipse.paho</groupId>
  121. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  122. <version>1.2.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.jooq</groupId>
  126. <artifactId>joou-java-6</artifactId>
  127. <version>0.9.4</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.haiqiu.tools</groupId>
  131. <artifactId>hq-all-tools</artifactId>
  132. <version>1.1.1</version>
  133. </dependency>
  134. </dependencies>
  135. <properties>
  136. <maven.compiler.source>8</maven.compiler.source>
  137. <maven.compiler.target>8</maven.compiler.target>
  138. </properties>
  139. </project>