
META-INF.maven.org.apache.activemq.artemis-commons.pom.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>artemis-pom</artifactId> <groupId>org.apache.activemq</groupId> <version>2.26.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>artemis-commons</artifactId> <name>ActiveMQ Artemis Commons</name> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createDependencyReducedPom>true</createDependencyReducedPom> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/**/*</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>javax.json</pattern> <shadedPattern>org.apache.activemq.artemis.commons.shaded.json</shadedPattern> </relocation> <relocation> <pattern>org.apache.johnzon</pattern> <shadedPattern>org.apache.activemq.artemis.commons.shaded.johnzon</shadedPattern> </relocation> </relocations> <artifactSet> <includes> <include>org.apache.johnzon:johnzon-core</include> <include>jakarta.json:jakarta.json-api</include> </includes> </artifactSet> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-processor</artifactId> <version>2.2.1.Final</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> <version>2.2.1.Final</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> <version>2.1.18.Final</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.wildfly.common</groupId> <artifactId>wildfly-common</artifactId> <version>1.5.2.Final</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <version>3.5.0.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-buffer</artifactId> <version>4.1.79.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport</artifactId> <version>4.1.79.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>4.1.79.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>artemis-unit-test-support</artifactId> <version>2.26.0</version> <scope>test</scope> </dependency> </dependencies> <properties> <activemq.basedir>${project.basedir}/..</activemq.basedir> </properties> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy