addc-jmx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.addc</groupId> <artifactId>addc-jmx</artifactId> <version>2.6</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"> <parent> <groupId>com.addc</groupId> <artifactId>addc-commons</artifactId> <version>2.6</version> <relativePath>../addc-commons</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>addc-jmx</artifactId> <packaging>jar</packaging> <name>addc-jmx</name> <description> The addc-jmx library supplies a JMX Connector server that can can use a properties file similar to that used in Spring Security and which can also use the Classes from a Spring Security setup to validate the user connecting to the MBean Server. </description> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <instrumentation> <excludes> <exclude>**/*Exception.class</exclude> <exclude>**/*Constants.class</exclude> <exclude>**/JMXAccessController.class</exclude> </excludes> </instrumentation> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.addc</groupId> <artifactId>addc-base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.addc</groupId> <artifactId>addc-slp</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.addc</groupId> <artifactId>addc-alerts</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.addc</groupId> <artifactId>addc-slp</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.livetribe.slp</groupId> <artifactId>livetribe-slp</artifactId> <version>2.2.1</version> <scope>test</scope> </dependency> </dependencies> </project>