Skip to content

Commit e9b33fe

Browse files
author
Ruslan Gainutdinov
committed
Added POM file
1 parent f54de23 commit e9b33fe

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

pom.xml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.graylog2.syslog-output</groupId>
8+
<artifactId>graylog2-output-syslog</artifactId>
9+
<version>1.1</version>
10+
<packaging>jar</packaging>
11+
12+
<name>graylog2-output-syslog</name>
13+
<url>http://maven.apache.org</url>
14+
15+
<properties>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
</properties>
18+
19+
<dependencies>
20+
<dependency>
21+
<groupId>junit</groupId>
22+
<artifactId>junit</artifactId>
23+
<version>3.8.1</version>
24+
<scope>test</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.graylog2</groupId>
28+
<artifactId>graylog2-plugin</artifactId>
29+
<version>1.1.6</version>
30+
<scope>provided</scope>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.graylog2</groupId>
34+
<artifactId>syslog4j</artifactId>
35+
<version>0.9.53</version>
36+
</dependency>
37+
</dependencies>
38+
39+
<build>
40+
<plugins>
41+
<plugin>
42+
<groupId>org.apache.maven.plugins</groupId>
43+
<artifactId>maven-assembly-plugin</artifactId>
44+
<version>2.2.1</version>
45+
<configuration>
46+
<finalName>graylog2-plugin-output-syslog</finalName>
47+
<descriptorRefs>
48+
<descriptorRef>jar-with-dependencies</descriptorRef>
49+
</descriptorRefs>
50+
</configuration>
51+
</plugin>
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-compiler-plugin</artifactId>
55+
<version>2.3.2</version>
56+
<configuration>
57+
<source>1.6</source>
58+
<target>1.6</target>
59+
</configuration>
60+
</plugin>
61+
</plugins>
62+
</build>
63+
64+
65+
</project>

0 commit comments

Comments
 (0)