quarkus-narayana-lra
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-narayana-lra</artifactId> <version>3.17.0.CR1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>quarkus-narayana-lra-parent</artifactId> <groupId>io.quarkus</groupId> <version>3.17.0.CR1</version> <relativePath>..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>quarkus-narayana-lra</artifactId> <name>Quarkus - Narayana MicroProfile LRA Participant - Runtime</name> <description>Coordinate Long Running Actions (LRA)</description> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc</artifactId> </dependency> <dependency> <groupId>org.jboss.narayana.rts</groupId> <artifactId>narayana-lra</artifactId> </dependency> <dependency> <groupId>org.jboss.narayana.rts</groupId> <artifactId>lra-service-base</artifactId> <exclusions> <exclusion> <groupId>org.jboss.spec.javax.ws.rs</groupId> <artifactId>jboss-jaxrs-api_3.0_spec</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jboss.narayana.rts</groupId> <artifactId>lra-proxy-api</artifactId> <exclusions> <exclusion> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-client</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jboss.narayana.rts</groupId> <artifactId>lra-client</artifactId> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.lra</groupId> <artifactId>microprofile-lra-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.angus</groupId> <artifactId>angus-activation</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-maven-plugin</artifactId> <configuration> <removedResources> <artifact> <key>org.jboss.narayana.rts:narayana-lra</key> <resources>META-INF/services/jakarta.ws.rs.client.ClientBuilder</resources> </artifact> <artifact> <key>org.jboss.narayana.rts:lra-client</key> <resources>META-INF/services/jakarta.ws.rs.client.ClientBuilder</resources> </artifact> </removedResources> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> <version>${project.version}</version> </path> </annotationProcessorPaths> <compilerArgs> <arg>-AlegacyConfigRoot=true</arg> </compilerArgs> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>