pom.xml 2.0 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?>
2 3
<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">
wu-sheng's avatar
wu-sheng 已提交
4
	<modelVersion>4.0.0</modelVersion>
Z
zhangxin10 已提交
5

wu-sheng's avatar
wu-sheng 已提交
6 7
	<groupId>com.ai.cloud</groupId>
	<artifactId>skywalking-sdk-plugin</artifactId>
8
	<version>1.0b</version>
wu-sheng's avatar
wu-sheng 已提交
9 10 11
	<modules>
		<module>dubbo-plugin</module>
		<module>spring-plugin</module>
12
		<module>mysql-plugin</module>
13
		<module>jdbc-plugin</module>
wu-sheng's avatar
wu-sheng 已提交
14
		<module>web-plugin</module>
Z
zhangxin10 已提交
15 16
		<module>httpclient-4.2.x-plugin</module>
		<module>httpclient-4.3.x-plugin</module>
17 18
		<module>httpClient-4.x-plugin</module>
		<module>httpClient-4.x-plugin-dubbox-rest-attachment</module>
19
		<module>jedis-2.x-plugin</module>
20
	</modules>
wu-sheng's avatar
wu-sheng 已提交
21
	<packaging>pom</packaging>
Z
zhangxin10 已提交
22

wu-sheng's avatar
wu-sheng 已提交
23 24
	<name>skywalking-sdk-plugin</name>
	<url>http://maven.apache.org</url>
Z
zhangxin10 已提交
25

wu-sheng's avatar
wu-sheng 已提交
26 27 28
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
Z
zhangxin10 已提交
29

wu-sheng's avatar
wu-sheng 已提交
30 31 32 33
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
34
			<version>4.12</version>
wu-sheng's avatar
wu-sheng 已提交
35 36 37 38 39 40 41 42 43
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
wu-sheng's avatar
wu-sheng 已提交
44 45
					<source>1.7</source>
					<target>1.7</target>
wu-sheng's avatar
wu-sheng 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58
					<encoding>${project.build.sourceEncoding}</encoding>
				</configuration>
			</plugin>
			<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>
59 60 61 62 63 64 65 66
	
	<distributionManagement>
		<repository>
			<id>bintray-wu-sheng-sky-walking-repository</id>
			<name>wu-sheng-sky-walking-repository</name>
			<url>https://api.bintray.com/maven/wu-sheng/skywalking/com.ai.cloud.skywalking-sdk-plugin/;publish=1</url>
		</repository>
	</distributionManagement>
67
</project>