pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <parent>
  5. <artifactId>huimv-farm-datacenter</artifactId>
  6. <groupId>com.huimv</groupId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <!-- <groupId>com.huimv</groupId>-->
  11. <artifactId>huimv-farm-video</artifactId>
  12. <!-- <version>0.0.1-SNAPSHOT</version>-->
  13. <!-- <name>demo</name>-->
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.dahuatech.icc</groupId>
  25. <artifactId>java-sdk-common</artifactId>
  26. <version>1.0.8</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.dahuatech.icc</groupId>
  31. <artifactId>java-sdk-oauth</artifactId>
  32. <version>1.0.8</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-httpclient</groupId>
  37. <artifactId>commons-httpclient</artifactId>
  38. <version>3.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.httpcomponents</groupId>
  42. <artifactId>httpcore</artifactId>
  43. <version>4.4.4</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpmime</artifactId>
  48. <version>4.5.12</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>commons-io</groupId>
  52. <artifactId>commons-io</artifactId>
  53. <version>2.8.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-lang3</artifactId>
  58. <version>3.7</version>
  59. </dependency>
  60. <!-- <dependency>-->
  61. <!-- <groupId>net.sf.json-lib</groupId>-->
  62. <!-- <artifactId>json-lib</artifactId>-->
  63. <!-- <version>2.2.3</version>-->
  64. <!-- <classifier>jdk15</classifier>-->
  65. <!-- </dependency>-->
  66. <dependency>
  67. <groupId>com.huimv</groupId>
  68. <artifactId>huimv-common</artifactId>
  69. <version>0.0.6-SNAPSHOT</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <!-- 青山项目打包名称 -->
  74. <finalName>huimv-env-video-0.0.1-SNAPSHOT</finalName>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-maven-plugin</artifactId>
  79. <configuration>
  80. <includeSystemScope>true</includeSystemScope>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. <!-- <build>-->
  86. <!-- <plugins>-->
  87. <!-- <plugin>-->
  88. <!-- <groupId>org.springframework.boot</groupId>-->
  89. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  90. <!-- </plugin>-->
  91. <!-- <plugin>-->
  92. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  93. <!-- <artifactId>maven-resources-plugin</artifactId>-->
  94. <!-- <version>2.6</version>-->
  95. <!-- </plugin>-->
  96. <!-- </plugins>-->
  97. <!-- </build>-->
  98. </project>