txoj
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.narayana.arjunacore</groupId> <artifactId>txoj</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"> <parent> <groupId>org.jboss.narayana.arjunacore</groupId> <artifactId>arjunacore-all</artifactId> <version>7.2.2.Final</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>txoj</artifactId> <name>Narayana: ArjunaCore txoj</name> <description>ArjunaCore txoj module</description> <packaging>jar</packaging> <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> <build> <sourceDirectory>classes</sourceDirectory> <resources> <resource> <directory>etc</directory> </resource> </resources> <testSourceDirectory>tests/classes</testSourceDirectory> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <inherited>false</inherited> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <!-- Were refactored to true classes as used in multiple places --> <exclude>**/AbortObject.java</exclude> <exclude>**/CommitObject.java</exclude> <exclude>**/ThreadObject1.java</exclude> <exclude>**/ThreadObject2.java</exclude> <exclude>**/DummyLockManager.java</exclude> <exclude>**/DummyTOModule.java</exclude> <exclude>**/MyRecoveredTO.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <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> <dependency> <groupId>junit</groupId> <artifactId>junit</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> </dependencies> <profiles> <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> </plugins> </build> </profile> </profiles> </project>