maven-shade-plugin.log4j2-cachefile-transformer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.edwgiz</groupId> <artifactId>maven-shade-plugin.log4j2-cachefile-transformer</artifactId> <version>2.15</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> <groupId>com.github.edwgiz</groupId> <artifactId>maven-shade-plugin.log4j2-cachefile-transformer</artifactId> <version>2.15</version> <name>Maven Shade Log4j2 transformer</name> <description>Transformer implementation to concatenate Log4j2Plugins.dat files</description> <url>https://github.com/edwgiz/maven-shaded-log4j-transformer</url> <scm> <connection>scm:git:https://github.com:edwgiz/maven-shaded-log4j-transformer.git</connection> <developerConnection>scm:git:https://github.com:edwgiz/maven-shaded-log4j-transformer.git</developerConnection> <url>https://github.com/edwgiz/maven-shaded-log4j-transformer</url> </scm> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://opensource.org/licenses/Apache-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>edwgiz</name> <email>edwgiz@gmail.com</email> <organization>Github</organization> <organizationUrl>https://github.com/edwgiz</organizationUrl> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.15.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.15.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> </dependency> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.8.1</version> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/content/groups/public</url> </repository> </repositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <resources> <resource> <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE.txt</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <compilerArgs> <compilerArg>-Xlint:deprecation</compilerArg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.2.0</version> <configuration> <!-- Set to 'true' after fix of https://issues.apache.org/jira/browse/MDEP-753 --> <failOnWarning>false</failOnWarning> <ignoredUnusedDeclaredDependencies> <!-- runtime --> <ignoredUnusedDeclaredDependency>org.apache.logging.log4j:log4j-api </ignoredUnusedDeclaredDependency> <!-- test-runtime --> <ignoredUnusedDeclaredDependency>org.junit.jupiter:junit-jupiter-engine </ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> </configuration> <executions> <execution> <id>analyze</id> <phase>package</phase> <goals> <goal>analyze</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.7</version> <executions> <execution> <id>prepare-code-coverage</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report-code-coverage</id> <goals> <goal>report</goal> </goals> <configuration> <outputDirectory>${project.reporting.outputDirectory}/jacoco-aggregate</outputDirectory> </configuration> </execution> <execution> <id>verify-test-coverage</id> <phase>test</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <outputDirectory>${project.build.directory}/jacoco-report</outputDirectory> <rules> <rule> <element>PACKAGE</element> <limits> <limit> <counter>LINE</counter> <value>COVEREDRATIO</value> <minimum>0.96</minimum> </limit> </limits> </rule> </rules> </configuration> </plugin> <plugin> <groupId>com.sigpwned</groupId> <artifactId>jacoco-badge-maven-plugin</artifactId> <version>0.1.4</version> <executions> <execution> <id>generate-jacoco-badge</id> <phase>verify</phase> <goals> <goal>badge</goal> <!-- Generate a badge from a unified JaCoCo report --> </goals> <configuration> <!-- What coverage level is considered passing? Optional, default 70. --> <passing>96</passing> <!-- Legal values: instruction, branch, line, method. Optional, default instruction. --> <metric>instruction</metric> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <passphrase>${gpg.passphrase}</passphrase> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>