-
Notifications
You must be signed in to change notification settings - Fork 20
/
pom.xml
93 lines (84 loc) · 2.76 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.handu</groupId>
<artifactId>rocketmq-flume</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<url>http://www.handu.com</url>
<inceptionYear>2014</inceptionYear>
<organization>
<name>韩都衣舍</name>
<url>http://www.handu.com</url>
</organization>
<developers>
<developer>
<name>The Hando Apollo Team</name>
<email>dev@handu.com</email>
<url>http://apollo.handu.com/</url>
<organization>韩都衣舍</organization>
<organizationUrl>http://www.handu.com/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/rocketmq/rocketmq-flume.git</connection>
<developerConnection>scm:git:https://github.com/rocketmq/rocketmq-flume.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<guava.version>18.0</guava.version>
<flume.version>1.5.2</flume.version>
<rocketmq.version>3.2.6</rocketmq.version>
<junit.version>4.11</junit.version>
<mockito.version>1.9.0</mockito.version>
</properties>
<modules>
<module>rocketmq-flume-sink</module>
<module>rocketmq-flume-source</module>
</modules>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.apache.flume</groupId>
<artifactId>flume-ng-core</artifactId>
<version>${flume.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba.rocketmq</groupId>
<artifactId>rocketmq-client</artifactId>
<version>${rocketmq.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>clean install dependency:copy-dependencies</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>