lambda-logging
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.symphonia</groupId> <artifactId>lambda-logging</artifactId> <version>1.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>io.symphonia</groupId> <artifactId>lambda-monitoring-parent</artifactId> <version>1.0.3</version> </parent> <artifactId>lambda-logging</artifactId> <name>lambda-logging</name> <description>Modern AWS Lambda logging</description> <url>https://github.com/symphoniacloud/lambda-monitoring/tree/master/lambda-logging</url> <dependencies> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-lambda-java-core</artifactId> </dependency> <!-- NB: log4j-over-slf4j provides `org.apache.log4j.MDC`, which is dynamically loaded by the Lambda runtime --> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>java-hamcrest</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>no-config</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>no-config</classifier> <excludes> <exclude>/io/symphonia/lambda/logging/DefaultLogbackConfigurator.class</exclude> <exclude>/META-INF/services/ch.qos.logback.classic.spi.Configurator</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>