<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.7.0</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.example</groupId>
|
<artifactId>demo</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>demo</name>
|
<description>demo</description>
|
<properties>
|
<javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable>
|
<httpcomponents.version>4.5.14</httpcomponents.version>
|
<fastjson.version>1.2.83</fastjson.version>
|
<commons-lang3.version>3.12.0</commons-lang3.version>
|
<logback.version>1.2.11</logback.version>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
<groupId>com.hikvision.ga</groupId>
|
<artifactId>artemis-http-client</artifactId>
|
<version>1.1.8</version>
|
|
<scope>system</scope>
|
<systemPath>${project.basedir}/src/main/resources/libs/artemis-http-client-1.1.8.jar</systemPath>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>${httpcomponents.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpmime</artifactId>
|
<version>${httpcomponents.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>${commons-lang3.version}</version>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|