jboss-as-jmx-remoting
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.jbossas</groupId> <artifactId>jboss-as-jmx-remoting</artifactId> <version>6.0.0.20100216-M2</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"> <parent> <groupId>org.jboss.jbossas</groupId> <artifactId>jboss-as-parent</artifactId> <version>6.0.0.20100216-M2</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jboss.jbossas</groupId> <artifactId>jboss-as-jmx-remoting</artifactId> <packaging>jar</packaging> <name>JBoss Application Server JMX Remoting</name> <url>http://www.jboss.org/jbossas</url> <description>JBoss Application Server (jmx-remoting module)</description> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>rmic-maven-plugin</artifactId> <executions> <execution> <id>rmi-compile</id> <goals> <goal>rmic</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <includes> <include>**/RMIServerImpl.class</include> <include>**/RMIConnectionImpl.class</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> <exclude>test/**</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <!-- Compile (global dependencies) --> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-common-core</artifactId> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-spi</artifactId> </dependency> <dependency> <groupId>apache-xerces</groupId> <artifactId>xml-apis</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.mx</groupId> <artifactId>jboss-j2se</artifactId> </dependency> <dependency> <groupId>oswego-concurrent</groupId> <artifactId>concurrent</artifactId> </dependency> <dependency> <groupId>org.jboss.remoting</groupId> <artifactId>jboss-remoting</artifactId> </dependency> </dependencies> </project>