infinispan-server-rhq-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.infinispan.server</groupId>
<artifactId>infinispan-server-rhq-plugin</artifactId>
<version>8.0.0.CR1</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>org.infinispan.server</groupId>
<artifactId>infinispan-server-versions</artifactId>
<version>8.0.0.CR1</version>
<relativePath>../../versions/pom.xml</relativePath>
</parent>
<artifactId>infinispan-server-rhq-plugin</artifactId>
<name>Infinispan Server - RHQ/JON plugin</name>
<description>Infinispan Server - RHQ/JON plugin</description>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.rhq</groupId>
<artifactId>rhq-core-domain</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>hibernate</groupId>
<artifactId>hibernate3</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
</exclusion>
<exclusion>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.rhq</groupId>
<artifactId>rhq-core-plugin-api</artifactId>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
</exclusion>
<exclusion>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.rhq</groupId>
<artifactId>rhq-jboss-as-7-plugin</artifactId>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
</exclusion>
<exclusion>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.rhq</groupId>
<artifactId>rhq-core-native-system</artifactId>
<exclusions>
<exclusion>
<groupId>org.hyperic</groupId>
<artifactId>sigar</artifactId>
</exclusion>
<exclusion>
<groupId>org.hyperic</groupId>
<artifactId>sigar-dist</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
</exclusion>
<exclusion>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>distribution</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<skipTests>true</skipTests>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>assemble</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>${project.basedir}/src/main/assemblies/plugin.xml</descriptor>
</descriptors>
<finalName>${product.name}-server-rhq-plugin-${product.version}</finalName>
<outputDirectory>${project.build.directory}</outputDirectory>
<workDirectory>${project.build.directory}/assembly/work</workDirectory>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>