我是靠谱客的博主 激昂火,最近开发中收集的这篇文章主要介绍log4j redis-appender pom,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<?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.ryantenney.log4j</groupId>
    <artifactId>redis-appender</artifactId>
    <version>1.0.0</version>
    <name>Log4j Redis Appender</name>

    <inceptionYear>2012</inceptionYear>
    <description>log4j appender for publishing directly to redis</description>
    <url>http://github.com/ryantenney/log4j-redis-appender/</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <maven.junit.sysproperties>log4j.configuration log4j.debug</maven.junit.sysproperties>
        <log4j.configuration>file:${basedir}/log4j.properties</log4j.configuration>
        <log4j.debug>true</log4j.debug>
        <jedis.version>2.1.0</jedis.version>
        <log4j.version>1.2.17</log4j.version>
    </properties>

    <developers>
        <developer>
            <name>Ryan Tenney</name>
            <email>ryan@10e.us</email>
            <timezone>-5</timezone>
        </developer>
    </developers>

    <licenses>
        <license>
            <name>Apache License 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
	    <distribution>repo</distribution>
        </license>
    </licenses>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <scm>
        <connection>scm:git:git://github.com/ryantenney/log4j-redis-appender.git</connection>
        <developerConnection>scm:git:git@github.com:ryantenney/log4j-redis-appender.git</developerConnection>
        <url>https://github.com/ryantenney/log4j-redis-appender/</url>
    </scm>

    <issueManagement>
        <system>github</system>
        <url>http://github.com/ryantenney/log4j-redis-appender/issues</url>
    </issueManagement>

    <dependencies>
        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
            <version>${jedis.version}</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>${log4j.version}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>net.logstash.log4j</groupId>
            <artifactId>jsonevent-layout</artifactId>
            <version>1.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.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.8.1</version>
                <configuration>
                    <parallel>classes</parallel>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.1.2</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.8.1</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.2.1</version>
                <configuration>
                    <allowTimestampedSnapshots>true</allowTimestampedSnapshots>
                    <!-- Make signing prompt for passphrase properly http://jira.codehaus.org/browse/MGPG-9 -->
                    <mavenExecutorId>forked-path</mavenExecutorId>
                    <tagNameFormat>v@{project.version}</tagNameFormat>
                    <preparationGoals>clean test</preparationGoals>
                    <stagingRepository>sonatype-nexus-staging::default::https://oss.sonatype.org/service/local/staging/deploy/maven2</stagingRepository>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>findbugs-maven-plugin</artifactId>
                <version>2.3.3</version>
                <configuration>
                    <effort>Max</effort>
                    <threshold>Default</threshold>
                    <xmlOutput>true</xmlOutput>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>check</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <reportPlugins>
                        <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-project-info-reports-plugin</artifactId>
                            <version>2.4</version>
                            <configuration>
                                <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
                                <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
                            </configuration>
                        </plugin>
                        <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-javadoc-plugin</artifactId>
                            <version>2.8.1</version>
                        </plugin>
                        <plugin>
                            <groupId>org.codehaus.mojo</groupId>
                            <artifactId>findbugs-maven-plugin</artifactId>
                            <version>2.4.0</version>
                        </plugin>
                    </reportPlugins>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.4</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>
http://maven.outofmemory.cn/com.ryantenney.log4j/redis-appender/1.0.0.pom


更多
最近半年最热Maven Group
  • com.google.guava 
  • io.kamon
  • com.google.api-client 
  • org.hibernate
  • org.neo4j 
  • joda-time 
  • org.apache.flink
  • com.trueaccord.scalapb
  • org.seleniumhq.selenium
  • com.fasterxml.jackson.core 
  • ch.qos.logback
  • org.jetbrains.kotlin 
  • org.dbflute
  • org.eclipse.persistence 
  • com.liferay.portal
  • com.amazonaws 
  • org.apache.axis2
  • io.projectreactor 
  • org.eclipse.jetty
  • org.apache.logging.log4j
  • org.springframework 
  • org.xwiki.commons
  • org.codehaus.groovy 
  • org.apache.cxf
  • com.twitter 
  • org.scalaz
apache  plugin  Maven  api  jboss  codehaus client  IO  eclipse  SERVER  spring  osgi Scala  web  module  Archetype  framework security  Http  Android  library  ui  xml servlet  GWT  Twitter  Model  container  json config  console  typesafe  Ant  rest  JPA testing  Directory  wicket  Akka
最近一年最热Maven Group
  • com.google.guava 
  • io.kamon 
  • info.cukes
  • org.springframework
  • com.fasterxml.jackson.core
  • com.google.api-client 
  • org.hibernate
  • joda-time 
  • org.neo4j 
  • org.jetbrains.kotlin
  • org.apache.flink 
  • com.trueaccord.scalapb
  • io.dropwizard.metrics
  • org.seleniumhq.selenium 
  • org.apache.spark
  • ch.qos.logback 
  • org.specs2 
  • commons-cli
  • com.linkedin.pegasus 
  • org.ops4j.pax.exam
  • com.ning 
  • org.dbflute 
  • org.eclipse.persistence
  • com.typesafe.play 
  • org.apache.axis2
  • com.amazonaws

最后

以上就是激昂火为你收集整理的log4j redis-appender pom的全部内容,希望文章能够帮你解决log4j redis-appender pom所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部