|
|
@@ -1,15 +1,70 @@
|
|
|
-<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>logstash-forwarder-java</groupId>
|
|
|
- <artifactId>logstash-forwarder-java</artifactId>
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
- <name>logstash-forwarder-java</name>
|
|
|
- <description>Java version of logstash forwarder</description>
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>commons-io</groupId>
|
|
|
- <artifactId>commons-io</artifactId>
|
|
|
- <version>2.2</version>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
+<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>logstash-forwarder-java</groupId>
|
|
|
+ <artifactId>logstash-forwarder-java</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <name>logstash-forwarder-java</name>
|
|
|
+ <description>Java version of logstash forwarder</description>
|
|
|
+ <url>https://github.com/didfet/logstash-forwarder-java</url>
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ </properties>
|
|
|
+ <licenses>
|
|
|
+ <license>
|
|
|
+ <name>The Apache Software License, Version 2.0</name>
|
|
|
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
+ <distribution>manual</distribution>
|
|
|
+ <comments>A business-friendly OSS license</comments>
|
|
|
+ </license>
|
|
|
+ </licenses>
|
|
|
+ <scm>
|
|
|
+ <!-- See http://maven.apache.org/plugins/maven-release-plugin/examples/perform-release.html -->
|
|
|
+ <!-- for how to perform a release from the connection below. -->
|
|
|
+ <connection>scm:git:https://github.com/didfet/logstash-forwarder-java</connection>
|
|
|
+ <developerConnection>scm:git:https://github.com/didfet/logstash-forwarder-java</developerConnection>
|
|
|
+ <url>https://github.com/didfet/logstash-forwarder-java</url>
|
|
|
+ </scm>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <version>2.18.1</version>
|
|
|
+ <configuration>
|
|
|
+ <forkCount>0</forkCount>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>2.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
+ <version>2.3.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>4.11</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>log4j</groupId>
|
|
|
+ <artifactId>log4j</artifactId>
|
|
|
+ <version>1.2.17</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-lang</groupId>
|
|
|
+ <artifactId>commons-lang</artifactId>
|
|
|
+ <version>2.6</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
</project>
|