logstash-logback-encoder-7.4.pom 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?xml version="1.0" encoding="UTF-8"?><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>net.logstash.logback</groupId>
  4. <artifactId>logstash-logback-encoder</artifactId>
  5. <version>7.4</version>
  6. <name>Logstash Logback Encoder</name>
  7. <description>Provides logback encoders, layouts, and appenders to log in JSON and other formats supported by Jackson</description>
  8. <url>https://github.com/logfellow/logstash-logback-encoder</url>
  9. <licenses>
  10. <license>
  11. <name>Apache License, Version 2.0</name>
  12. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  13. </license>
  14. <license>
  15. <name>MIT License</name>
  16. <url>http://www.slf4j.org/license.html</url>
  17. <comments>The portion of LogstashBasicMarker.java that has been copied from
  18. org.slf4j.helpers.BasicMarker is released under the MIT License.</comments>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>neilprosser</id>
  24. <name>Neil Prosser</name>
  25. <email>neil.prosser@gmail.com</email>
  26. <organization>Nokia</organization>
  27. <organizationUrl>http://music.nokia.com</organizationUrl>
  28. </developer>
  29. <developer>
  30. <id>philsttr</id>
  31. <name>Phil Clay</name>
  32. </developer>
  33. <developer>
  34. <id>lusis</id>
  35. <name>John E. Vincent</name>
  36. <email>lusis.org+github.com@gmail.com</email>
  37. </developer>
  38. <developer>
  39. <id>brenuart</id>
  40. <name>Bertrand Renuart</name>
  41. </developer>
  42. </developers>
  43. <scm>
  44. <connection>scm:git:https://github.com/logfellow/logstash-logback-encoder</connection>
  45. <developerConnection>scm:git:https://github.com/logfellow/logstash-logback-encoder</developerConnection>
  46. <tag>logstash-logback-encoder-7.4</tag>
  47. <url>https://github.com/logfellow/logstash-logback-encoder</url>
  48. </scm>
  49. <dependencies>
  50. <dependency>
  51. <groupId>ch.qos.logback</groupId>
  52. <artifactId>logback-classic</artifactId>
  53. <version>1.3.7</version>
  54. <scope>compile</scope>
  55. <!--
  56. Required for logging regular ILoggingEvents with a Logger.
  57. Not needed if only logging IAccessEvents for access logs.
  58. -->
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>ch.qos.logback</groupId>
  63. <artifactId>logback-access</artifactId>
  64. <version>1.3.7</version>
  65. <scope>compile</scope>
  66. <!--
  67. Required for logging IAccessEvents for access logs.
  68. Not needed if only logging regular ILoggingEvents with a Logger.
  69. -->
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>ch.qos.logback</groupId>
  74. <artifactId>logback-core</artifactId>
  75. <version>1.3.7</version>
  76. <!--
  77. "provided" since users of logstash-logback-encoder must also
  78. directly depend on logback-classic or logback-access,
  79. and both of those depend on logback-core transitively.
  80. -->
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.fasterxml.jackson.core</groupId>
  85. <artifactId>jackson-databind</artifactId>
  86. <version>2.15.2</version>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.fasterxml.jackson.dataformat</groupId>
  91. <artifactId>jackson-dataformat-cbor</artifactId>
  92. <version>2.15.2</version>
  93. <scope>compile</scope>
  94. <optional>true</optional>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.fasterxml.jackson.dataformat</groupId>
  98. <artifactId>jackson-dataformat-smile</artifactId>
  99. <version>2.15.2</version>
  100. <scope>compile</scope>
  101. <!--
  102. Only needed if net.logstash.logback.decorate.cbor is used.
  103. -->
  104. <optional>true</optional>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.fasterxml.jackson.dataformat</groupId>
  108. <artifactId>jackson-dataformat-yaml</artifactId>
  109. <version>2.15.2</version>
  110. <scope>compile</scope>
  111. <!--
  112. Only needed if net.logstash.logback.decorate.smile is used.
  113. -->
  114. <optional>true</optional>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.fasterxml.uuid</groupId>
  118. <artifactId>java-uuid-generator</artifactId>
  119. <version>4.2.0</version>
  120. <scope>compile</scope>
  121. <!--
  122. Only needed if net.logstash.logback.decorate.yaml is used.
  123. -->
  124. <optional>true</optional>
  125. </dependency>
  126. </dependencies>
  127. </project>