pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>huimv-farm-datacenter-egg</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>huimv-farm-environ</artifactId>
  12. <dependencies>
  13. <!-- JPA -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-data-jpa</artifactId>
  17. </dependency>
  18. <!-- mysql -->
  19. <dependency>
  20. <groupId>mysql</groupId>
  21. <artifactId>mysql-connector-java</artifactId>
  22. </dependency>
  23. <!-- <dependency>-->
  24. <!-- <groupId>com.dahuatech.icc</groupId>-->
  25. <!-- <artifactId>java-sdk-oauth</artifactId>-->
  26. <!-- <version>1.0.8</version>-->
  27. <!-- <scope>compile</scope>-->
  28. <!-- </dependency>-->
  29. <!--ICC-->
  30. <!-- <dependency>-->
  31. <!-- <groupId>com.huimv</groupId>-->
  32. <!-- <artifactId>huimv-common</artifactId>-->
  33. <!-- <version>0.0.1-SNAPSHOT</version>-->
  34. <!-- </dependency>-->
  35. <dependency>
  36. <groupId>com.dahuatech.icc</groupId>
  37. <artifactId>java-sdk-oauth</artifactId>
  38. <version>1.0.8</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>net.sf.json-lib</groupId>
  42. <artifactId>json-lib</artifactId>
  43. <version>2.2.3</version>
  44. <classifier>jdk15</classifier>
  45. <!-- jdk版本 -->
  46. </dependency>
  47. <!-- huimv.com -->
  48. <dependency>
  49. <groupId>com.huimv</groupId>
  50. <artifactId>huimv-common</artifactId>
  51. <version>0.0.1</version>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-resources-plugin</artifactId>
  63. <version>2.6</version>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>