| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>net.logstash.logback</groupId>
- <artifactId>logstash-logback-encoder</artifactId>
- <version>7.4</version>
- <name>Logstash Logback Encoder</name>
- <description>Provides logback encoders, layouts, and appenders to log in JSON and other formats supported by Jackson</description>
- <url>https://github.com/logfellow/logstash-logback-encoder</url>
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0</url>
- </license>
- <license>
- <name>MIT License</name>
- <url>http://www.slf4j.org/license.html</url>
- <comments>The portion of LogstashBasicMarker.java that has been copied from
- org.slf4j.helpers.BasicMarker is released under the MIT License.</comments>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>neilprosser</id>
- <name>Neil Prosser</name>
- <email>neil.prosser@gmail.com</email>
- <organization>Nokia</organization>
- <organizationUrl>http://music.nokia.com</organizationUrl>
- </developer>
- <developer>
- <id>philsttr</id>
- <name>Phil Clay</name>
- </developer>
- <developer>
- <id>lusis</id>
- <name>John E. Vincent</name>
- <email>lusis.org+github.com@gmail.com</email>
- </developer>
- <developer>
- <id>brenuart</id>
- <name>Bertrand Renuart</name>
- </developer>
- </developers>
- <scm>
- <connection>scm:git:https://github.com/logfellow/logstash-logback-encoder</connection>
- <developerConnection>scm:git:https://github.com/logfellow/logstash-logback-encoder</developerConnection>
- <tag>logstash-logback-encoder-7.4</tag>
- <url>https://github.com/logfellow/logstash-logback-encoder</url>
- </scm>
- <dependencies>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>1.3.7</version>
- <scope>compile</scope>
- <!--
- Required for logging regular ILoggingEvents with a Logger.
- Not needed if only logging IAccessEvents for access logs.
- -->
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-access</artifactId>
- <version>1.3.7</version>
- <scope>compile</scope>
- <!--
- Required for logging IAccessEvents for access logs.
- Not needed if only logging regular ILoggingEvents with a Logger.
- -->
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-core</artifactId>
- <version>1.3.7</version>
- <!--
- "provided" since users of logstash-logback-encoder must also
- directly depend on logback-classic or logback-access,
- and both of those depend on logback-core transitively.
- -->
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.15.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.dataformat</groupId>
- <artifactId>jackson-dataformat-cbor</artifactId>
- <version>2.15.2</version>
- <scope>compile</scope>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.dataformat</groupId>
- <artifactId>jackson-dataformat-smile</artifactId>
- <version>2.15.2</version>
- <scope>compile</scope>
- <!--
- Only needed if net.logstash.logback.decorate.cbor is used.
- -->
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.dataformat</groupId>
- <artifactId>jackson-dataformat-yaml</artifactId>
- <version>2.15.2</version>
- <scope>compile</scope>
- <!--
- Only needed if net.logstash.logback.decorate.smile is used.
- -->
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.uuid</groupId>
- <artifactId>java-uuid-generator</artifactId>
- <version>4.2.0</version>
- <scope>compile</scope>
- <!--
- Only needed if net.logstash.logback.decorate.yaml is used.
- -->
- <optional>true</optional>
- </dependency>
- </dependencies>
- </project>
|