pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. <dependency>
  54. <groupId>org.jxls</groupId>
  55. <artifactId>jxls</artifactId>
  56. <version>2.6.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.jxls</groupId>
  60. <artifactId>jxls-poi</artifactId>
  61. <version>1.1.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.poi</groupId>
  65. <artifactId>poi</artifactId>
  66. <version>3.15</version>
  67. </dependency>
  68. <!-- poi 读取word doc-->
  69. <dependency>
  70. <groupId>org.apache.poi</groupId>
  71. <artifactId>poi-scratchpad</artifactId>
  72. <version>3.15</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.poi</groupId>
  76. <artifactId>poi-ooxml</artifactId>
  77. <version>3.15</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.poi</groupId>
  81. <artifactId>poi-ooxml-schemas</artifactId>
  82. <version>3.15</version>
  83. </dependency>
  84. </dependencies>
  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>