Download log4j-staticshutdown-1.1.0.jar file

Introduction

You can download log4j-staticshutdown-1.1.0.jar in this page.

License

MIT License

Type List

log4j-staticshutdown-1.1.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.djdch.log4j/log4j-staticshutdown/pom.properties
META-INF/maven/com.djdch.log4j/log4j-staticshutdown/pom.xml
com.djdch.log4j.StaticShutdownCallbackRegistry.class

Pom

log4j-staticshutdown-1.1.0.pom file content.

<?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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>com.djdch.log4j</groupId>
    <artifactId>log4j-staticshutdown</artifactId>
    <version>1.1.0</version>

    <name>Log4j-StaticShutdown</name>
    <description>Provide a ShutdownRegistrationStrategy for Log4j 2 designed to be manually invoked.</description>
    <url>https://github.com/DjDCH/Log4j-StaticShutdown</url>

    <licenses>
        <license>
            <name>MIT License</name>
            <url>http://djdch.mit-license.org/</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>DjDCH</name>
            <email>coding@djdch.com</email>
        </developer>
    </developers>

    <scm>
        <connection>scm:git:git@github.com:DjDCH/Log4j-StaticShutdown.git</connection>
        <developerConnection>scm:git:git@github.com:DjDCH/Log4j-StaticShutdown.git</developerConnection>
        <url>git@github.com:DjDCH/Log4j-StaticShutdown.git</url>
    </scm>

    <distributionManagement>
        <repository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
        <snapshotRepository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-core</artifactId>
            <version>2.2</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.4</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.18.1</version>
                <configuration>
                    <systemPropertyVariables>
                        <log4j.shutdownCallbackRegistry>com.djdch.log4j.StaticShutdownCallbackRegistry</log4j.shutdownCallbackRegistry>
                    </systemPropertyVariables>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>release</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
                        <version>2.4</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>2.10.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-gpg-plugin</artifactId>
                        <version>1.6</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.sonatype.plugins</groupId>
                        <artifactId>nexus-staging-maven-plugin</artifactId>
                        <version>1.6.5</version>
                        <extensions>true</extensions>
                        <configuration>
                            <serverId>ossrh</serverId>
                            <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                            <autoReleaseAfterClose>false</autoReleaseAfterClose>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>

POM Entry

<dependency>
   <groupId>com.djdch.log4j</groupId>
   <artifactId>log4j-staticshutdown</artifactId>
   <version>1.1.0</version>
</dependency>

Download

If you think the following log4j-staticshutdown-1.1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download log4j-staticshutdown-1.1.0.jar file




PreviousNext

Related