123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>huimv-farm-datacenter-egg</artifactId>
- <groupId>com.huimv</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>huimv-farm-environ</artifactId>
- <dependencies>
- <!-- JPA -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-jpa</artifactId>
- </dependency>
- <!-- mysql -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.dahuatech.icc</groupId>-->
- <!-- <artifactId>java-sdk-oauth</artifactId>-->
- <!-- <version>1.0.8</version>-->
- <!-- <scope>compile</scope>-->
- <!-- </dependency>-->
- <!--ICC-->
- <!-- <dependency>-->
- <!-- <groupId>com.huimv</groupId>-->
- <!-- <artifactId>huimv-common</artifactId>-->
- <!-- <version>0.0.1-SNAPSHOT</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.dahuatech.icc</groupId>
- <artifactId>java-sdk-oauth</artifactId>
- <version>1.0.8</version>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.2.3</version>
- <classifier>jdk15</classifier>
- <!-- jdk版本 -->
- </dependency>
- <!-- huimv.com -->
- <dependency>
- <groupId>com.huimv</groupId>
- <artifactId>huimv-common</artifactId>
- <version>0.0.1</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.6</version>
- </plugin>
- </plugins>
- </build>
- </project>
|