lra-test-arquillian-extension
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.narayana.lra</groupId> <artifactId>lra-test-arquillian-extension</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-test</artifactId> <version>1.0.1.Final</version> </parent> <artifactId>lra-test-arquillian-extension</artifactId> <name>LRA tests: Arquillian extension</name> <description>Arquillian extensions needed for LRA tests to work</description> <dependencies> <!-- MicroProfile dependencies --> <dependency> <groupId>org.eclipse.microprofile.lra</groupId> <artifactId>microprofile-lra-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.lra</groupId> <artifactId>microprofile-lra-tck</artifactId> </dependency> <!-- Narayana dependencies --> <dependency> <groupId>org.jboss.narayana.lra</groupId> <artifactId>narayana-lra</artifactId> </dependency> <dependency> <groupId>org.jboss.narayana.lra</groupId> <artifactId>lra-coordinator-jar</artifactId> </dependency> <dependency> <groupId>org.jboss.narayana.lra</groupId> <artifactId>lra-client</artifactId> </dependency> <!-- Arquillian Maven Resolver --> <dependency> <groupId>org.jboss.shrinkwrap.resolver</groupId> <artifactId>shrinkwrap-resolver-api</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.shrinkwrap.resolver</groupId> <artifactId>shrinkwrap-resolver-impl-maven</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.junit</groupId> <artifactId>arquillian-junit-container</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.shrinkwrap.resolver</groupId> <artifactId>shrinkwrap-resolver-impl-maven-archive</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.weld.se</groupId> <artifactId>weld-se-shaded</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>compile</scope> </dependency> </dependencies> <profiles> <profile> <id>do-not-start-lra-coordinator</id> <activation> <property> <name>!lra.coordinator</name> </property> </activation> <properties> <lra.coordinator.exec.plugin.phase>none</lra.coordinator.exec.plugin.phase> </properties> </profile> <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>