tnm4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.soulwing.snmp</groupId> <artifactId>tnm4j</artifactId> <version>1.2.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.soulwing</groupId> <artifactId>soulwing-parent</artifactId> <version>22</version> </parent> <groupId>org.soulwing.snmp</groupId> <artifactId>tnm4j</artifactId> <version>1.2.0</version> <name>${project.artifactId}</name> <description>A simplified SNMP API for Java, inspired by Jürgen Schönwälder's Tnm extension for Tcl.</description> <inceptionYear>2012</inceptionYear> <url>https://github.com/soulwing/tnm4j</url> <licenses> <license> <name>GNU General Public License</name> <url>http://www.gnu.org/licenses/gpl.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:soulwing/${project.artifactId}.git</connection> <developerConnection>${project.scm.connection}</developerConnection> <url>git@github.com:soulwing/${project.artifactId}.git</url> <tag>1.2.0</tag> </scm> <build> <plugins> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <configuration> <message>Created site for ${project.version}</message> <path>maven-site</path> <server>github</server> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site</phase> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.snmp4j</groupId> <artifactId>snmp4j</artifactId> <version>2.8.12</version> <exclusions> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.percederberg.mibble</groupId> <artifactId>mibble</artifactId> <version>2.9.3</version> </dependency> <dependency> <groupId>net.percederberg.mibble</groupId> <artifactId>mibble-mibs</artifactId> <version>2.9.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.11</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-junit4</artifactId> <version>2.12.0</version> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-legacy</artifactId> <version>2.12.0</version> </dependency> </dependencies> <repositories> <repository> <id>mibble</id> <name>Open NMS Repository (for Mibble)</name> <url>https://maven.opennms.org/content/groups/opennms.org-release</url> <releases><enabled>true</enabled></releases> </repository> </repositories> <profiles> <profile> <id>examples</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/examples/java</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>src/examples/resources</directory> </resource> </resources> </build> </profile> </profiles> </project>