pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>logstash-forwarder-java</groupId>
  5. <artifactId>logstash-forwarder-java</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>logstash-forwarder-java</name>
  8. <description>Java version of logstash forwarder</description>
  9. <url>https://github.com/didfet/logstash-forwarder-java</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <licenses>
  14. <license>
  15. <name>The Apache Software License, Version 2.0</name>
  16. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  17. <distribution>manual</distribution>
  18. <comments>A business-friendly OSS license</comments>
  19. </license>
  20. </licenses>
  21. <scm>
  22. <!-- See http://maven.apache.org/plugins/maven-release-plugin/examples/perform-release.html -->
  23. <!-- for how to perform a release from the connection below. -->
  24. <connection>scm:git:https://github.com/didfet/logstash-forwarder-java</connection>
  25. <developerConnection>scm:git:https://github.com/didfet/logstash-forwarder-java</developerConnection>
  26. <url>https://github.com/didfet/logstash-forwarder-java</url>
  27. </scm>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-surefire-plugin</artifactId>
  33. <version>2.18.1</version>
  34. <configuration>
  35. <forkCount>0</forkCount>
  36. </configuration>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. <dependencies>
  41. <dependency>
  42. <groupId>commons-io</groupId>
  43. <artifactId>commons-io</artifactId>
  44. <version>2.2</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.fasterxml.jackson.core</groupId>
  48. <artifactId>jackson-databind</artifactId>
  49. <version>2.3.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>junit</groupId>
  53. <artifactId>junit</artifactId>
  54. <version>4.11</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>log4j</groupId>
  59. <artifactId>log4j</artifactId>
  60. <version>1.2.17</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>commons-lang</groupId>
  65. <artifactId>commons-lang</artifactId>
  66. <version>2.6</version>
  67. </dependency>
  68. </dependencies>
  69. </project>