nagios
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.snamp.gateways</groupId> <artifactId>nagios</artifactId> <version>2.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.snamp.gateways</groupId> <artifactId>gateways</artifactId> <version>2.0.0</version> </parent> <artifactId>nagios</artifactId> <version>2.0.0</version> <packaging>bundle</packaging> <name>Nagios ActiveCheck Gateway</name> <description>SNAMP Gateway for Nagios active check</description> <dependencies> <dependency> <groupId>io.snamp</groupId> <artifactId>framework</artifactId> <version>2.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-servlet</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>snamp-${project.artifactId}-gateway</Bundle-SymbolicName> <Bundle-Activator>com.bytex.snamp.gateway.nagios.NagiosGatewayActivator</Bundle-Activator> <Export-Package /> <Provide-Capability>com.bytex.snamp.gateway; type=nagios</Provide-Capability> </instructions> </configuration> </plugin> </plugins> </build> </project>