rest-tx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.narayana.rts</groupId> <artifactId>rest-tx</artifactId> <version>7.0.1.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</groupId> <artifactId>narayana-all</artifactId> <version>7.0.1.Final</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jboss.narayana.rts</groupId> <artifactId>rest-tx</artifactId> <packaging>pom</packaging> <name>Narayana: RESTful transactions</name> <description>RESTful transactions</description> <properties> <version.resteasy-client>${version.org.jboss.resteasy}</version.resteasy-client> <version.narayana>${project.version}</version.narayana> <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> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <inherited>false</inherited> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> <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> <modules> <module>at</module> <module>lra</module> </modules> </project>