log4j-nagios-appender
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.viaboxx</groupId> <artifactId>log4j-nagios-appender</artifactId> <version>1.1</version> </dependency>
<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"> <!-- The MIT License (MIT) Copyright (c) 2012 Sebastian Schuth Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. --> <!-- parent POM to Deploy Snapshots and Stage Releases with Maven on SonaType OSS Repos --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <modelVersion>4.0.0</modelVersion> <groupId>de.viaboxx</groupId> <artifactId>log4j-nagios-appender</artifactId> <packaging>jar</packaging> <version>1.1</version> <name>nagiosAppender</name> <description>Log4J Appender which is directly pushing messages to nagios.</description> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:viaboxxsystems/nagiosAppender.git</connection> <developerConnection>scm:git:git@github.com:viaboxxsystems/nagiosAppender.git</developerConnection> <url>git@github.com:viaboxxsystems/nagiosAppender.git</url> </scm> <developers> <developer> <name>Sebastian Schuth</name> <organization>Viaboxx</organization> <organizationUrl>http://www.viaboxxsystems.de</organizationUrl> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.googlecode.jsendnsca</groupId> <artifactId>jsendnsca</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> <scope>provided</scope> </dependency> </dependencies> </project>