snmp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.sentrysoftware</groupId>
<artifactId>snmp</artifactId>
<version>2.0.00</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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sentrysoftware</groupId>
<artifactId>oss-parent</artifactId>
<version>2</version>
</parent>
<groupId>org.sentrysoftware</groupId>
<artifactId>snmp</artifactId>
<version>2.0.00</version>
<name>SNMP Java Client</name>
<description>SNMP Client Library for Java</description>
<organization>
<name>Sentry Software</name>
<url>https://sentrysoftware.com</url>
</organization>
<url>https://sentrysoftware.org/snmp</url>
<inceptionYear>2023</inceptionYear>
<licenses>
<license>
<name>LGPL-3.0</name>
<url>https://www.gnu.org/licenses/lgpl+gpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/sentrysoftware/snmp/issues/</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/sentrysoftware/snmp.git</connection>
<url>https://sentrysoftware.org/snmp</url>
<tag>v2.0.00</tag>
</scm>
<developers>
<developer>
<name>Bertrand Martin (@bertysentry)</name>
<email>bertrand@sentrysoftware.com</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
<developer>
<name>Nassim Boutekedjiret (@NassimBtk)</name>
<email>nassim@sentrysoftware.com</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
<developer>
<name>Kawtar Bakour (@KawtarBK9)</name>
<email>kawtar@sentrysoftware.com</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
<developer>
<name>Elyes Cherfa (@CherfaElyes)</name>
<email>elyes@sentrysoftware.com</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
</developers>
<properties>
<!-- Java 8 -->
<maven.compiler.release>8</maven.compiler.release>
<!-- Reproducible Build -->
<!-- See https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
<project.build.outputTimestamp>2025-02-14T08:05:31Z</project.build.outputTimestamp>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.11.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<!-- Actual build plugins -->
<plugins>
<!-- javadoc -->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>all,-missing</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<!-- pmd -->
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
<minimumTokens>50</minimumTokens>
<targetJdk>${maven.compiler.release}</targetJdk>
<rulesets>
<ruleset>pmd.xml</ruleset>
</rulesets>
</configuration>
</plugin>
</plugins>
</reporting>
</project>