forked from javierarrieta/flume-appenders
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
64 lines (57 loc) · 2.23 KB
/
Copy pathpom.xml
File metadata and controls
64 lines (57 loc) · 2.23 KB
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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gilt.flume</groupId>
<artifactId>flume-appenders</artifactId>
<packaging>pom</packaging>
<version>0.1.9</version>
<name>Flume appenders</name>
<scm>
<connection>scm:git:ssh://github.com/gilt/flume-appenders.git</connection>
<developerConnection>scm:git:ssh://git@github.com/gilt/flume-appenders.git</developerConnection>
<url>https://github.com/gilt/flume-appenders</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>logging-flume-commons</module>
<module>logback-flume-appender</module>
<module>log4j-flume-appender</module>
<module>appender-test</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<preparationGoals>clean verify</preparationGoals>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.flume</groupId>
<artifactId>flume-ng-sdk</artifactId>
<version>1.5.2</version>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>bintray</id>
<name>giltgroupe-maven</name>
<url>https://api.bintray.com/maven/giltgroupe/maven/flume-appenders/</url>
</repository>
</distributionManagement>
</project>