pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. <!-- springboot 整合 hibernate validator 校验 -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-validation</artifactId>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>org.springframework.cloud</groupId>-->
  41. <!-- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>-->
  42. <!-- <version>2.1.3.RELEASE</version>-->
  43. <!-- </dependency>-->
  44. <dependency>
  45. <groupId>com.tofly</groupId>
  46. <artifactId>snws-base-api</artifactId>
  47. <version>1.0.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-freemarker</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>junit</groupId>
  55. <artifactId>junit</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.tofly</groupId>
  60. <artifactId>common-ftp</artifactId>
  61. <version>1.0.0</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.itextpdf</groupId>
  66. <artifactId>itextpdf</artifactId>
  67. <version>5.5.13.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.httpcomponents</groupId>
  71. <artifactId>httpcore</artifactId>
  72. <version>4.4.11</version>
  73. </dependency>
  74. <!-- 海康对接maven -->
  75. <dependency>
  76. <groupId>com.hikvision.ga</groupId>
  77. <artifactId>artemis-http-client</artifactId>
  78. <version>1.1.3</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>net.sf.jacob-project</groupId>
  82. <artifactId>jacob</artifactId>
  83. <version>1.14.3</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework</groupId>
  87. <artifactId>spring-test</artifactId>
  88. </dependency>
  89. <!-- Mqtt -->
  90. <dependency>
  91. <groupId>org.springframework.integration</groupId>
  92. <artifactId>spring-integration-mqtt</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.eclipse.paho</groupId>
  96. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  97. <version>1.2.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.fasterxml.jackson.core</groupId>
  101. <artifactId>jackson-databind</artifactId>
  102. <version>2.10.0</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.fasterxml.jackson.core</groupId>
  106. <artifactId>jackson-core</artifactId>
  107. <version>2.10.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.fasterxml.jackson.core</groupId>
  111. <artifactId>jackson-annotations</artifactId>
  112. <version>2.10.0</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.eclipse.paho</groupId>
  116. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  117. <version>1.2.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.jooq</groupId>
  121. <artifactId>joou-java-6</artifactId>
  122. <version>0.9.4</version>
  123. </dependency>
  124. </dependencies>
  125. <properties>
  126. <maven.compiler.source>8</maven.compiler.source>
  127. <maven.compiler.target>8</maven.compiler.target>
  128. </properties>
  129. </project>