arjunacore-all
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.narayana.arjunacore</groupId> <artifactId>arjunacore-all</artifactId> <version>7.1.0.Final</version> </dependency>
<?xml version="1.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"> <!-- Copyright The Narayana Authors SPDX short identifier: Apache-2.0 --> <parent> <groupId>org.jboss.narayana</groupId> <artifactId>narayana-all</artifactId> <version>7.1.0.Final</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jboss.narayana.arjunacore</groupId> <artifactId>arjunacore-all</artifactId> <packaging>pom</packaging> <name>Narayana: Arjunacore</name> <description>Narayana: Arjunacore All</description> <properties> <checkstyle.skip>true</checkstyle.skip> <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> <build> <plugins> <plugin> <inherited>false</inherited> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> <modules> <module>arjuna</module> <module>txoj</module> <module>arjunacore</module> <module>arjuna/services</module> </modules> <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>