mom-amqp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.objectweb.joram</groupId> <artifactId>mom-amqp</artifactId> <version>1.0</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> <groupId>org.objectweb.joram</groupId> <artifactId>mom-amqp</artifactId> <packaging>bundle</packaging> <name>JORAM :: mom :: amqp</name> <description>Builds amqp.</description> <version>1.0</version> <url>http://joram.ow2.org/</url> <organization> <name>Scalagent D.T.</name> <url>http://www.scalagent.com/</url> </organization> <parent> <artifactId>ow2</artifactId> <groupId>org.ow2</groupId> <version>1.1</version> </parent> <properties> <joram.version>5.6.0</joram.version> <paxexamversion>2.1.0</paxexamversion> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> <Export-Package>org.ow2.joram.mom.amqp, org.ow2.joram.mom.amqp.marshalling, org.ow2.joram.mom.amqp.structures, org.ow2.joram.mom.amqp.exceptions</Export-Package> </instructions> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.objectweb.joram</groupId> <artifactId>a3-rt</artifactId> <version>${joram.version}</version> <exclusions> <exclusion> <artifactId>org.osgi</artifactId> <groupId>org.osgi</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.objectweb.joram</groupId> <artifactId>joram-mom-extensions-amqp</artifactId> <version>${joram.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.rabbitmq</groupId> <artifactId>amqp-client</artifactId> <version>2.4.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <!-- Pax Exam Dependencies --> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-container-paxrunner</artifactId> <version>${paxexamversion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-link-mvn</artifactId> <version>${paxexamversion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-testforge</artifactId> <version>${paxexamversion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.runner</groupId> <artifactId>pax-runner-no-jcl</artifactId> <version>1.7.2</version> <scope>test</scope> <type>bundle</type> </dependency> </dependencies> </project>