mq-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.fabric8.mq</groupId> <artifactId>mq-client</artifactId> <version>2.2.100</version> </dependency>
<!-- Copyright 2005-2015 Red Hat, Inc. Red Hat licenses this file to you under the Apache License, version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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>io.fabric8.mq</groupId> <artifactId>mq</artifactId> <version>2.2.100</version> </parent> <groupId>io.fabric8.mq</groupId> <artifactId>mq-client</artifactId> <packaging>bundle</packaging> <name>Fabric8 :: MQ :: Client</name> <properties> <fuse.osgi.export>io.fabric8.mq.core;version=${fuse.osgi.version};-noimport:=true</fuse.osgi.export> <!-- lets explicitly import the mq-fabric and cf code --> <fuse.osgi.import.pkg> org.apache.activemq.pool, * </fuse.osgi.import.pkg> </properties> <dependencies> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr.annotations</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-osgi</artifactId> <optional>true</optional> <exclusions> <!-- exclude stuff not needed --> <exclusion> <groupId>org.apache.activemq</groupId> <artifactId>activemq-web</artifactId> </exclusion> <exclusion> <groupId>org.apache.activemq</groupId> <artifactId>activemq-http</artifactId> </exclusion> <exclusion> <groupId>org.apache.activemq</groupId> <artifactId>activemq-leveldb-store</artifactId> </exclusion> <!-- for the security fix in commons-collections --> <exclusion> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> </exclusion> </exclusions> </dependency> <!-- for the security fix in commons-collections --> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>${commons.collections.version}</version> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-pool</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-utils</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>scr</goal> </goals> <configuration> <specVersion>1.2</specVersion> <strictMode>false</strictMode> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>