pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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-egg</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. <distributionManagement>
  19. <repository>
  20. <id>rdc-releases</id>
  21. <url>https://repo.rdc.aliyun.com/repository/136471-release-drEU5y/</url>
  22. </repository>
  23. <snapshotRepository>
  24. <id>rdc-snapshots</id>
  25. <url>https://repo.rdc.aliyun.com/repository/136471-snapshot-WhviYl/</url>
  26. </snapshotRepository>
  27. </distributionManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.dahuatech.icc</groupId>
  35. <artifactId>java-sdk-common</artifactId>
  36. <version>1.0.8</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.dahuatech.icc</groupId>
  41. <artifactId>java-sdk-oauth</artifactId>
  42. <version>1.0.8</version>
  43. <scope>compile</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>commons-httpclient</groupId>
  47. <artifactId>commons-httpclient</artifactId>
  48. <version>3.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.httpcomponents</groupId>
  52. <artifactId>httpcore</artifactId>
  53. <version>4.4.4</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.httpcomponents</groupId>
  57. <artifactId>httpmime</artifactId>
  58. <version>4.5.12</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-io</groupId>
  62. <artifactId>commons-io</artifactId>
  63. <version>2.8.0</version>
  64. </dependency>
  65. <!-- huimv.com-->
  66. <dependency>
  67. <groupId>com.huimv</groupId>
  68. <artifactId>huimv-common</artifactId>
  69. <version>0.0.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>net.sf.json-lib</groupId>
  73. <artifactId>json-lib</artifactId>
  74. <version>2.2.3</version>
  75. <classifier>jdk15</classifier>
  76. </dependency>
  77. <!-- JPA -->
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-data-jpa</artifactId>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-maven-plugin</artifactId>
  88. <configuration>
  89. <includeSystemScope>true</includeSystemScope>
  90. </configuration>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <configuration>
  96. <source>8</source>
  97. <target>8</target>
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>