<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with
|
this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
|
"License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations
|
under the License. -->
|
<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">
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.hikvision.ga</groupId>
|
<artifactId>artemis-http-client-demo</artifactId>
|
<version>1.1.8</version>
|
<packaging>jar</packaging>
|
<name>artemis-http-client-demo</name>
|
<description>hikvision open sdk</description>
|
<url>hikvision-artemis-sdk</url>
|
|
<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>
|
|
<licenses>
|
<license>
|
<name>The Apache Software License, Version 2.0</name>
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
<distribution>repo</distribution>
|
</license>
|
</licenses>
|
|
<scm>
|
<url></url>
|
</scm>
|
|
<developers>
|
<developer>
|
<name>sky-lft</name>
|
</developer>
|
</developers>
|
|
<dependencies>
|
<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>
|
<dependency>
|
<groupId>ch.qos.logback</groupId>
|
<artifactId>logback-core</artifactId>
|
<version>${logback.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>ch.qos.logback</groupId>
|
<artifactId>logback-classic</artifactId>
|
<version>${logback.version}</version>
|
</dependency>
|
</dependencies>
|
<build>
|
<plugins>
|
<plugin>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<source>1.6</source>
|
<target>1.6</target>
|
<encoding>UTF-8</encoding>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-source-plugin</artifactId>
|
<version>2.2.1</version>
|
<!-- <executions>-->
|
<!-- <execution>-->
|
<!-- <id>attach-sources</id>-->
|
<!-- <goals>-->
|
<!-- <goal>jar-no-fork</goal>-->
|
<!-- </goals>-->
|
<!-- </execution>-->
|
<!-- </executions>-->
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
<version>2.10.3</version>
|
<configuration>
|
<additionalparam>-Xdoclint:none</additionalparam>
|
<!-- <appendAssemblyId>false</appendAssemblyId>-->
|
<!-- <descriptorRefs>-->
|
<!-- <descriptorRef>jar-with-dependencies</descriptorRef>-->
|
<!-- </descriptorRefs>-->
|
<archive>
|
<manifest>
|
<mainClass>ga.ArtemisPostTest</mainClass>
|
</manifest>
|
</archive>
|
</configuration>
|
<!-- <executions>-->
|
<!-- <execution>-->
|
<!-- <goals>-->
|
<!-- <goal>jar</goal>-->
|
<!-- </goals>-->
|
<!-- </execution>-->
|
<!-- </executions>-->
|
</plugin>
|
</plugins>
|
|
</build>
|
|
<distributionManagement>
|
<repository>
|
<id>PBG-release</id>
|
<name>PBG-release</name>
|
<url>http://af.hikvision.com.cn:80/artifactory/maven-pbg-release/</url>
|
</repository>
|
<snapshotRepository>
|
<id>PBG-snapshot</id>
|
<name>PBG-snapshot</name>
|
<url>http://af.hikvision.com.cn/artifactory/maven-pbg-snapshot/</url>
|
</snapshotRepository>
|
</distributionManagement>
|
|
</project>
|