jta
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.narayana.jta</groupId> <artifactId>jta</artifactId> <version>7.2.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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jboss.narayana.jta</groupId> <artifactId>narayana-jta-all</artifactId> <version>7.2.2.Final</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>jta</artifactId> <packaging>jar</packaging> <name>Narayana: ArjunaJTA jta</name> <description>Narayana: ArjunaJTA jta</description> <properties> <byteman.agent.support>-Djboss.modules.system.pkgs=com.sun.tools.attach,org.jboss.byteman -Djdk.attach.allowAttachSelf=true</byteman.agent.support> <checkstyle.skip>true</checkstyle.skip> <!-- java.net.preferIPv6Addresses=false is a workaround to (not) solve the bug in arquillian-extension-byteman --> <ipv6.server.jvm.args>-Djboss.bind.address=[::1] -Djboss.bind.address.management=[::1] -Djboss.bind.address.unsecure=[::1] -Djava.net.preferIPv4Stack=false -Djava.net.preferIPv6Addresses=false</ipv6.server.jvm.args> <!-- required for VM attach under JDK 11--> <surefire.argline>-Djdk.attach.allowAttachSelf=true</surefire.argline> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.narayana</groupId> <artifactId>narayana-bom-test</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- JTA (local: ArjunaJTA/jta and remote: ArjunaJTS/jtax) needs: * Jakarta Transaction API (jakarta.transaction-api) * Jakarta Connectors (for tx inflow) API (jakarta.resource-api) --> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> </dependency> <dependency> <groupId>jakarta.resource</groupId> <artifactId>jakarta.resource-api</artifactId> </dependency> <dependency> <groupId>jakarta.interceptor</groupId> <artifactId>jakarta.interceptor-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-transaction-spi</artifactId> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-spi</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jboss.narayana</groupId> <artifactId>common</artifactId> </dependency> <dependency> <groupId>org.jboss.narayana.arjunacore</groupId> <artifactId>arjuna</artifactId> </dependency> <dependency> <groupId>org.jboss.narayana</groupId> <artifactId>common</artifactId> <classifier>tests</classifier> <scope>test</scope> </dependency> <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API --> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-install</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-submit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-processor</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jnpserver</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.narayana</groupId> <artifactId>test-utils</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>etc</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> <testResource> <directory>tests/byteman-scripts</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <inherited>false</inherited> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-testCompile</id> <goals> <goal>testCompile</goal> </goals> <phase>test-compile</phase> <configuration> <testExcludes> <exclude>io/narayana/perf/product/*.java</exclude> <exclude>**/integration/*IntegrationTest.java</exclude> </testExcludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <useManifestOnlyJar>false</useManifestOnlyJar> <excludes> <exclude>**/io/narayana/perf/product/*</exclude> <!-- exclude tests which were run above using byteman scripts --> <exclude>**/recovery/CrashRecovery.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>create-test-jar</id> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-rulecheck-maven-plugin</artifactId> <executions> <execution> <id>rulecheck-test</id> <goals> <goal>rulecheck</goal> </goals> <configuration> <includes> <include>**/*.btm</include> </includes> <verbose>true</verbose> </configuration> </execution> </executions> </plugin> </plugins> <sourceDirectory>classes</sourceDirectory> <testSourceDirectory>tests/classes</testSourceDirectory> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <id>default-install</id> <phase>install</phase> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>arq</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>arqProfileActivated</name> <value>arq</value> </property> </activation> <dependencies> <dependency> <groupId>org.jboss.arquillian.core</groupId> <artifactId>arquillian-core-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.protocol</groupId> <artifactId>arquillian-protocol-servlet-jakarta</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.junit</groupId> <artifactId>arquillian-junit-container</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.extension</groupId> <artifactId>arquillian-extension-byteman</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wildfly.extras.creaper</groupId> <artifactId>creaper-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wildfly.core</groupId> <artifactId>wildfly-controller-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wildfly.core</groupId> <artifactId>wildfly-cli</artifactId> <scope>test</scope> </dependency> <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-compiler-plugin</artifactId> <executions> <execution> <id>arq-testCompile</id> <goals> <goal>testCompile</goal> </goals> <phase>test-compile</phase> <configuration> <testIncludes> <include>**/integration/*IntegrationTest.java</include> </testIncludes> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>${surefire.argline}</argLine> <systemPropertyVariables combine.children="append"> <!-- Used in arquillian.xml --> <server.jvm.args>${server.jvm.args} ${byteman.agent.support}</server.jvm.args> <node.address>127.0.0.1</node.address> </systemPropertyVariables> <redirectTestOutputToFile>true</redirectTestOutputToFile> <excludes> <exclude>**/io/narayana/perf/product/*</exclude> </excludes> <includes> <include>**/integration/*IntegrationTest.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>arqIPv6</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>arqProfileActivated</name> <value>arqIPv6</value> </property> </activation> <dependencies> <dependency> <groupId>org.jboss.arquillian.core</groupId> <artifactId>arquillian-core-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.protocol</groupId> <artifactId>arquillian-protocol-servlet-jakarta</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.junit</groupId> <artifactId>arquillian-junit-container</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.extension</groupId> <artifactId>arquillian-extension-byteman</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wildfly.extras.creaper</groupId> <artifactId>creaper-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wildfly.core</groupId> <artifactId>wildfly-controller-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wildfly.core</groupId> <artifactId>wildfly-cli</artifactId> <scope>test</scope> </dependency> <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-compiler-plugin</artifactId> <executions> <execution> <id>arqIPv6-testCompile</id> <goals> <goal>testCompile</goal> </goals> <phase>test-compile</phase> <configuration> <testIncludes> <include>**/integration/*IntegrationTest.java</include> </testIncludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>${surefire.argline}</argLine> <systemPropertyVariables combine.children="append"> <!-- Used in arquillian.xml --> <server.jvm.args>${server.jvm.args} ${byteman.agent.support} ${ipv6.server.jvm.args}</server.jvm.args> <node.address>[::1]</node.address> </systemPropertyVariables> <redirectTestOutputToFile>true</redirectTestOutputToFile> <excludes> <exclude>**/io/narayana/perf/product/*</exclude> </excludes> <includes> <include>**/integration/*IntegrationTest.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>commitMarkableResourcePerf</id> <dependencies> <dependency> <groupId>com.ibm.db2.jcc</groupId> <artifactId>db2jcc</artifactId> <scope>test</scope> </dependency> <!-- <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>sqljdbc4</artifactId> <systemPath>${orson.jar.location}/../qa/dbdrivers/mssql2005_sqljdbc_2.0/enu/sqljdbc4.jar </systemPath> <scope>system</scope> </dependency> <dependency> <groupId>com.sybase.jdbcx</groupId> <artifactId>jconn4</artifactId> <systemPath>${orson.jar.location}/../qa/dbdrivers/jConnect-6_0/classes/jconn3.jar</systemPath> <scope>system</scope> </dependency> --> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc10</artifactId> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <id>codeCoverage</id> <properties> <server.jvm.args>${jvm.args.other} ${jvm.args.memory} ${jvm.args.debug} ${jvm.args.jacoco} ${jvm.args.modular}</server.jvm.args> </properties> </profile> </profiles> </project>