narayana-lra
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.narayana.lra</groupId> <artifactId>narayana-lra</artifactId> <version>1.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jboss.narayana.lra</groupId> <artifactId>lra-parent</artifactId> <version>1.0.1.Final</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>narayana-lra</artifactId> <packaging>jar</packaging> <name>Narayana LRA</name> <dependencies> <dependency> <groupId>org.jboss.narayana.lra</groupId> <artifactId>lra-client</artifactId> </dependency> <dependency> <groupId>org.jboss.narayana.lra</groupId> <artifactId>lra-proxy-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.lra</groupId> <artifactId>microprofile-lra-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-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> </dependencies> <build> <plugins> <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> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <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-install-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <id>default-install</id> <phase>install</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>