compensations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.narayana.compensations</groupId> <artifactId>compensations</artifactId> <version>7.0.2.Final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright The Narayana Authors SPDX short identifier: Apache-2.0 --> <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"> <groupId>org.jboss.narayana.compensations</groupId> <modelVersion>4.0.0</modelVersion> <artifactId>compensations</artifactId> <packaging>jar</packaging> <name>Narayana: compensations</name> <description>Narayana: compensations</description> <parent> <groupId>org.jboss.narayana</groupId> <artifactId>narayana-all</artifactId> <version>7.0.2.Final</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <server.jvm.args> ${jvm.args.other} ${jvm.args.byteman} ${jvm.args.memory} ${jvm.args.debug} ${jvm.args.modular} </server.jvm.args> <checkstyle.skip>true</checkstyle.skip> <sortpom.skip>true</sortpom.skip> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.narayana</groupId> <artifactId>narayana-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.jboss.narayana</groupId> <artifactId>narayana-bom-test</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <inherited>false</inherited> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>test-compile</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <stripVersion>true</stripVersion> <includeGroupIds>org.jboss.byteman</includeGroupIds> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss.narayana.arjunacore</groupId> <artifactId>arjunacore</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.narayana.xts</groupId> <artifactId>jbossxts</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.weld</groupId> <artifactId>weld-core-impl</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <scope>provided</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.ejb</groupId> <artifactId>jakarta.ejb-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.narayana.xts</groupId> <artifactId>byteman_support</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.ws</groupId> <artifactId>jbossws-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.junit</groupId> <artifactId>arquillian-junit-container</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.protocol</groupId> <artifactId>arquillian-protocol-servlet-jakarta</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.xml.ws</groupId> <artifactId>jakarta.xml.ws-api</artifactId> <scope>provided</scope> </dependency> </dependencies> <profiles> <profile> <id>arq</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>org.wildfly.arquillian</groupId> <artifactId>wildfly-arquillian-container-managed</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>false</redirectTestOutputToFile> <skip>false</skip> <systemPropertyVariables combine.children="append"> <!-- Used in arquillian.xml --> <server.jvm.args>${server.jvm.args}</server.jvm.args> <node.address>127.0.0.1</node.address> <server.config>standalone-xts.xml</server.config> </systemPropertyVariables> <excludes> <exclude>**/*</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>arq-distributed</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>org.wildfly.arquillian</groupId> <artifactId>wildfly-arquillian-container-managed</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <skip>false</skip> <systemPropertyVariables combine.children="append"> <!-- Used in arquillian.xml --> <server.jvm.args>${server.jvm.args}</server.jvm.args> <node.address>127.0.0.1</node.address> <server.config>standalone-xts.xml</server.config> </systemPropertyVariables> <excludes> <exclude>**/*</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>arqIPv6</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>org.wildfly.arquillian</groupId> <artifactId>wildfly-arquillian-container-managed</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <skip>false</skip> <argLine>${ipv6.server.jvm.args}</argLine> <systemPropertyVariables combine.children="append"> <!-- Used in arquillian.xml --> <server.jvm.args>${server.jvm.args} ${ipv6.server.jvm.args}</server.jvm.args> <node.address>[::1]</node.address> <server.config>standalone.xml</server.config> </systemPropertyVariables> <excludes> <exclude>**/*</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>arqIPv6-distributed</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>org.wildfly.arquillian</groupId> <artifactId>wildfly-arquillian-container-managed</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <skip>false</skip> <argLine>${ipv6.server.jvm.args}</argLine> <systemPropertyVariables combine.children="append"> <!-- Used in arquillian.xml --> <server.jvm.args>${server.jvm.args} ${ipv6.server.jvm.args}</server.jvm.args> <node.address>[::1]</node.address> <server.config>standalone-xts.xml</server.config> </systemPropertyVariables> <excludes> <exclude>**/*</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>arq-remote</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>false</skip> <systemPropertyVariables combine.children="append"> <!-- Used in arquillian.xml --> <node.address>127.0.0.1</node.address> <server.config>standalone.xml</server.config> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.wildfly.arquillian</groupId> <artifactId>wildfly-arquillian-container-remote</artifactId> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>arq-weld</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>org.jboss.arquillian.container</groupId> <artifactId>arquillian-weld-embedded</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.platform</groupId> <artifactId>jakarta.jakartaee-api</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <skip>false</skip> <excludes> <exclude>**/*</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>codeCoverage</id> <properties> <server.jvm.args> ${jvm.args.other} ${jvm.args.byteman} ${jvm.args.memory} ${jvm.args.debug} ${jvm.args.jacoco} ${jvm.args.modular} </server.jvm.args> </properties> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <executions> <execution> <id>default-install</id> <phase>install</phase> </execution> </executions> <inherited>false</inherited> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/main/java</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>8</source> <detectOfflineLinks>false</detectOfflineLinks> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>