META-INF.maven.org.apache.activemq.artemis-commons.pom.xml Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
<?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.35.0</version> <relativePath>../artemis-pom/pom.xml</relativePath> </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/services/*</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> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <useStandardDocletOptions>true</useStandardDocletOptions> <minmemory>128m</minmemory> <maxmemory>512m</maxmemory> <noindex>true</noindex> <sourceFileIncludes> <sourceFileInclude>**/org/apache/activemq/artemis/api/**/*.java</sourceFileInclude> </sourceFileIncludes> <notimestamp>true</notimestamp> </configuration> </execution> <execution> <id>javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <useStandardDocletOptions>true</useStandardDocletOptions> <minmemory>128m</minmemory> <maxmemory>512m</maxmemory> <noindex>true</noindex> <sourceFileIncludes> <sourceFileInclude>**/org/apache/activemq/artemis/api/**/*.java</sourceFileInclude> </sourceFileIncludes> <notimestamp>true</notimestamp> </configuration> </execution> </executions> <configuration> <useStandardDocletOptions>true</useStandardDocletOptions> <minmemory>128m</minmemory> <maxmemory>512m</maxmemory> <noindex>true</noindex> <sourceFileIncludes> <sourceFileInclude>**/org/apache/activemq/artemis/api/**/*.java</sourceFileInclude> </sourceFileIncludes> <notimestamp>true</notimestamp> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>artemis-log-annotation-processor</artifactId> <version>2.35.0</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>2.22.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>log4j-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-core</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-buffer</artifactId> <version>4.1.111.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> <version>4.1.111.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>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.10.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>opentest4j</artifactId> <groupId>org.opentest4j</groupId> </exclusion> <exclusion> <artifactId>junit-platform-commons</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.10.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>artemis-unit-test-support</artifactId> <version>2.35.0</version> <scope>test</scope> </dependency> </dependencies> </project>