pom.xml 1.8 KB
Newer Older
1 2 3 4 5 6
<?xml version="1.0"?>
<project
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<modelVersion>4.0.0</modelVersion>
	<parent>
A
ascrutae 已提交
7
		<groupId>com.a.eye</groupId>
8
		<artifactId>skywalking-sdk-plugin</artifactId>
wu-sheng's avatar
wu-sheng 已提交
9
		<version>2.3-2017</version>
10
	</parent>
wu-sheng's avatar
wu-sheng 已提交
11
	
12
	<artifactId>skywalking-httpClient-4.x-plugin</artifactId>
wu-sheng's avatar
wu-sheng 已提交
13 14 15 16
	<packaging>jar</packaging>

    <name>httpclient-4.x-plugin</name>
    <url>http://maven.apache.org</url>
17 18 19 20 21 22 23

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<dependencies>
		<dependency>
A
ascrutae 已提交
24
			<groupId>com.a.eye</groupId>
25
			<artifactId>skywalking-api</artifactId>
wu-sheng's avatar
wu-sheng 已提交
26
			<version>2.3-2017</version>
27 28
		</dependency>
		
29

30 31 32 33
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>4.3</version>
34
			<scope>provided</scope>
35
		</dependency>
A
ascrutae 已提交
36
		<!--
37 38 39 40
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>4.2</version>
41
			<scope>compile</scope>
42 43
		</dependency>
		-->
A
ascrutae 已提交
44

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
		<dependency>
			<groupId>org.apache.logging.log4j</groupId>
			<artifactId>log4j-core</artifactId>
			<version>2.4.1</version>
			<scope>test</scope>
		</dependency>
	
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.12</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-resources-plugin</artifactId>
				<version>2.4.3</version>
				<configuration>
					<encoding>${project.build.sourceEncoding}</encoding>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>