nxrm3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sonatype.plugins</groupId> <artifactId>nxrm3</artifactId> <version>1.0.7</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Sonatype Nexus (TM) Open Source Version Copyright (c) 2019-present Sonatype, Inc. All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions. This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the Eclipse Foundation. All other trademarks are the property of their respective owners. --> <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.sonatype.buildsupport</groupId> <artifactId>public-parent</artifactId> <version>37</version> </parent> <groupId>org.sonatype.plugins</groupId> <artifactId>nxrm3</artifactId> <packaging>pom</packaging> <version>1.0.7</version> <inceptionYear>2019</inceptionYear> <licenses> <license> <name>Eclipse Public License</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> </license> </licenses> <ciManagement> <system>Bamboo</system> <url>https://bamboo.zion.sonatype.com/</url> </ciManagement> <issueManagement> <system>JIRA</system> <url>https://issues.sonatype.org/browse/NEXUS</url> </issueManagement> <scm> <url>https://github.com/sonatype/nxrm3-maven-plugin</url> <connection>scm:git:git://github.com/sonatype/nxrm3-maven-plugin.git</connection> <developerConnection>scm:git:ssh://git@github.com/sonatype/nxrm3-maven-plugin.git</developerConnection> </scm> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.version>3.8.6</maven.version> <maven.plugin.annotations.version>3.6.4</maven.plugin.annotations.version> <clm.applicationId>nxrm3-maven-plugin</clm.applicationId> <clm.skip>true</clm.skip> </properties> <modules> <module>maven-plugin</module> <module>testsuite</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>${maven.version}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven.plugin.annotations.version}</version> </dependency> <dependency> <groupId>com.sonatype.nexus</groupId> <artifactId>nexus-platform-api</artifactId> <version>3.4.20181205-180005.1567c7b</version> </dependency> <dependency> <groupId>org.sonatype.nexus.maven</groupId> <artifactId>nexus-common</artifactId> <version>1.6.8</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-verifier</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>3.3.0</version> </dependency> <dependency> <groupId>org.sonatype.goodies</groupId> <artifactId>goodies-httpfixture</artifactId> <version>2.3.6</version> </dependency> <dependency> <groupId>org.sonatype.sisu</groupId> <artifactId>sisu-file-tasks</artifactId> <version>1.9</version> </dependency> <dependency> <groupId>org.sonatype.goodies</groupId> <artifactId>goodies-testsupport</artifactId> <version>2.3.6</version> </dependency> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.inject</artifactId> <version>0.3.1</version> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.2.0</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.sonatype.clm</groupId> <artifactId>clm-maven-plugin</artifactId> <configuration> <skip>${clm.skip}</skip> </configuration> <executions> <execution> <goals> <goal>index</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>