aws-lambda-slf4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.vitalijr2.aws-lambda</groupId> <artifactId>aws-lambda-slf4j</artifactId> <version>1.1.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2022-2024 Vitalij Berdinskih Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>aws-lambda-slf4j</artifactId> <build> <defaultGoal>clean verify</defaultGoal> <pluginManagement> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>3.4.0</version> </plugin> <plugin> <artifactId>flatten-maven-plugin</artifactId> <configuration> <flattenMode>ossrh</flattenMode> </configuration> <executions> <execution> <goals> <goal>flatten</goal> </goals> <id>flatten</id> <phase>process-resources</phase> </execution> <execution> <goals> <goal>clean</goal> </goals> <id>clean</id> <phase>clean</phase> </execution> </executions> <groupId>org.codehaus.mojo</groupId> <version>1.6.0</version> </plugin> <plugin> <artifactId>templating-maven-plugin</artifactId> <executions> <execution> <goals> <goal>filter-sources</goal> </goals> <id>filter-sources</id> </execution> </executions> <groupId>org.codehaus.mojo</groupId> <version>3.0.0</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <configuration> <propertiesEncoding>ISO-8859-1</propertiesEncoding> </configuration> <groupId>org.apache.maven.plugins</groupId> <version>3.3.1</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>11</release> </configuration> <groupId>org.apache.maven.plugins</groupId> <version>3.13.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <properties> <groups>fast</groups> </properties> </configuration> <groupId>org.apache.maven.plugins</groupId> <version>3.3.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Created-By>${java.vm.version} (${java.vm.vendor})</Created-By> <Name>${project.name}</Name> </manifestEntries> </archive> </configuration> <groupId>org.apache.maven.plugins</groupId> <version>3.4.2</version> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <forkCount>1</forkCount> <includes> <include>**/*Test.java</include> </includes> <properties> <groups>slow</groups> </properties> <reuseForks>false</reuseForks> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <groupId>org.apache.maven.plugins</groupId> <version>3.3.1</version> </plugin> <plugin> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <configuration> <destFile>${project.build.directory}/jacoco-ut.exec</destFile> </configuration> <goals> <goal>prepare-agent</goal> </goals> <id>prepare-agent</id> </execution> <execution> <goals> <goal>prepare-agent-integration</goal> </goals> <id>prepare-agent-integration</id> </execution> <execution> <configuration> <destFile>${project.build.directory}/jacoco.exec</destFile> <fileSets> <fileSet> <directory>${project.build.directory}</directory> <includes> <include>*.exec</include> </includes> </fileSet> </fileSets> </configuration> <goals> <goal>merge</goal> </goals> <id>merge-results</id> <phase>verify</phase> </execution> <execution> <configuration> <dataFile>${project.build.directory}/jacoco.exec</dataFile> <outputDirectory>${project.reporting.outputDirectory}/jacoco</outputDirectory> </configuration> <goals> <goal>report</goal> </goals> <id>report</id> <phase>verify</phase> </execution> <execution> <configuration> <dataFile>${project.build.directory}/jacoco.exec</dataFile> <rules> <rule> <element>BUNDLE</element> <limits> <limit> <counter>COMPLEXITY</counter> <minimum>0.72</minimum> <value>COVEREDRATIO</value> </limit> </limits> </rule> </rules> </configuration> <goals> <goal>check</goal> </goals> <id>check-coverage</id> <phase>verify</phase> </execution> </executions> <groupId>org.jacoco</groupId> <version>0.8.12</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>3.3.1</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>${javadoc-plugin.version}</version> </plugin> <plugin> <artifactId>sign-maven-plugin</artifactId> <groupId>org.simplify4u.plugins</groupId> <version>1.1.0</version> </plugin> <plugin> <artifactId>central-publishing-maven-plugin</artifactId> <groupId>org.sonatype.central</groupId> <version>0.5.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <configuration> <rules> <requireJavaVersion> <version>[11,)</version> </requireJavaVersion> <requireMavenVersion> <version>[3.9.0,)</version> </requireMavenVersion> </rules> </configuration> <executions> <execution> <goals> <goal>enforce</goal> </goals> <id>enforce-maven</id> </execution> <execution> <goals> <goal>enforce</goal> </goals> <id>enforce-clean</id> <phase>pre-clean</phase> </execution> </executions> <groupId>org.apache.maven.plugins</groupId> <version>3.5.0</version> </plugin> <plugin> <artifactId>flatten-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <artifactId>annotations</artifactId> <groupId>org.jetbrains</groupId> <scope>provided</scope> <version>24.1.0</version> </dependency> <dependency> <artifactId>aws-lambda-java-core</artifactId> <groupId>com.amazonaws</groupId> <version>1.2.3</version> </dependency> <dependency> <artifactId>aws-lambda-java-events</artifactId> <groupId>com.amazonaws</groupId> <version>3.12.0</version> </dependency> <dependency> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> <version>${slf4j.version}</version> </dependency> <!-- test --> <dependency> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> <scope>test</scope> <version>${junit-jupiter.version}</version> </dependency> <dependency> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> <scope>test</scope> <version>${junit-jupiter.version}</version> </dependency> <dependency> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> <scope>test</scope> <version>${junit-jupiter.version}</version> </dependency> <dependency> <artifactId>mockito-core</artifactId> <groupId>org.mockito</groupId> <scope>test</scope> <version>${mockito.version}</version> </dependency> <dependency> <artifactId>mockito-junit-jupiter</artifactId> <groupId>org.mockito</groupId> <scope>test</scope> <version>${mockito.version}</version> </dependency> <dependency> <artifactId>hamcrest</artifactId> <groupId>org.hamcrest</groupId> <scope>test</scope> <version>2.2</version> </dependency> <dependency> <artifactId>system-stubs-core</artifactId> <groupId>uk.org.webcompere</groupId> <scope>test</scope> <version>${system-stubs.version}</version> </dependency> <dependency> <artifactId>system-stubs-jupiter</artifactId> <groupId>uk.org.webcompere</groupId> <scope>test</scope> <version>${system-stubs.version}</version> </dependency> </dependencies> </dependencyManagement> <description>An SLF4J Logger implementation for AWS Lambda and CloudWatch.</description> <developers> <developer> <email>vitalij_r2@outlook.com</email> <id>vitalijr2</id> <name>Vitalij Berdinskih</name> <timezone>Europe/Kyiv</timezone> <url>https://github.com/vitalijr2</url> </developer> </developers> <distributionManagement> <relocation> <groupId>io.github.vitalijr2.logging</groupId> <version>1.2.0</version> </relocation> </distributionManagement> <groupId>io.github.vitalijr2.aws-lambda</groupId> <inceptionYear>2022</inceptionYear> <licenses> <license> <comments>See NOTICE for third-party licenses.</comments> <distribution>repo</distribution> <name>Apache 2</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <modelVersion>4.0.0</modelVersion> <modules> <module>core</module> <module>logger</module> <module>json-logger</module> </modules> <name>SLF4J for AWS Lambda</name> <packaging>pom</packaging> <profiles> <profile> <build> <defaultGoal>clean deploy</defaultGoal> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalJOptions> <additionalJOption> -J-Dhttp.agent=maven-javadoc-plugin_${project.groupId}:${project.artifactId} </additionalJOption> </additionalJOptions> <additionalOptions> <additionalOption>--allow-script-in-comments</additionalOption> </additionalOptions> <bottom><![CDATA[ <script type="text/javascript" src="{@docRoot}/resources/prism.js"></script> ]]></bottom> <docfilessubdirs>true</docfilessubdirs> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <links> <link>https://javadoc.io/doc/org.slf4j/slf4j-api/${slf4j.version}/</link> </links> <offline>false</offline> <show>public</show> <top><![CDATA[ <link rel="stylesheet" type="text/css" href="{@docRoot}/resources/prism.css"/> <link rel="stylesheet" type="text/css" href="{@docRoot}/resources/aws-lambda-slf4j.css"/> ]]></top> </configuration> <executions> <execution> <goals> <goal>jar</goal> </goals> <id>attach-javadocs</id> </execution> </executions> <groupId>org.apache.maven.plugins</groupId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> <id>attach-sources</id> </execution> </executions> <groupId>org.apache.maven.plugins</groupId> </plugin> <plugin> <artifactId>central-publishing-maven-plugin</artifactId> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> <extensions>true</extensions> <groupId>org.sonatype.central</groupId> </plugin> <plugin> <artifactId>sign-maven-plugin</artifactId> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> <groupId>org.simplify4u.plugins</groupId> </plugin> </plugins> </build> <id>release</id> </profile> </profiles> <properties> <javadoc-plugin.version>3.7.0</javadoc-plugin.version> <junit-jupiter.version>5.10.3</junit-jupiter.version> <mockito.version>5.12.0</mockito.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <slf4j.version>2.0.13</slf4j.version> <system-stubs.version>2.1.6</system-stubs.version> </properties> <scm> <connection>scm:git:https://github.com/vitalijr2/aws-lambda-slf4j.git</connection> <developerConnection>scm:git:git@github.com:vitalijr2/aws-lambda-slf4j.git</developerConnection> <url>https://github.com/vitalijr2/aws-lambda-slf4j</url> </scm> <url>https://github.com/vitalijr2/aws-lambda-slf4j</url> <version>1.1.4</version> </project>