nexus-obr-testsuite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sonatype.nexus.obr</groupId> <artifactId>nexus-obr-testsuite</artifactId> <version>2.1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Sonatype Nexus (TM) Open Source Version Copyright (c) 2007-2013 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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.nexus.obr</groupId> <artifactId>nexus-obr</artifactId> <version>2.1.2</version> </parent> <artifactId>nexus-obr-testsuite</artifactId> <properties> <felix.home>${project.build.directory}/felix</felix.home> </properties> <dependencies> <dependency> <groupId>org.sonatype.nexus</groupId> <artifactId>nexus-testsuite-support</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.sonatype.nexus.obr</groupId> <artifactId>nexus-obr-client</artifactId> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-verifier</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <outputDirectory>${project.build.directory}</outputDirectory> <artifactItems> <artifactItem> <groupId>org.apache.maven</groupId> <artifactId>apache-maven</artifactId> <classifier>bin</classifier> <type>zip</type> </artifactItem> <artifactItem> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.main.distribution</artifactId> <classifier>project</classifier> <type>tar.gz</type> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>maven-fake-repo</id> <phase>pre-integration-test</phase> <goals> <goal>install</goal> </goals> <configuration> <localRepositoryPath>${project.build.directory}/maven/fake-repo</localRepositoryPath> <extraArtifacts> <xml>org.apache.maven.plugins:maven-clean-plugin:2.2:maven-plugin</xml> <xml>org.apache.maven.plugins:maven-resources-plugin:2.3:maven-plugin</xml> <xml>org.apache.maven.plugins:maven-compiler-plugin:2.0.2:maven-plugin</xml> <xml>org.apache.maven.plugins:maven-surefire-plugin:2.4.3:maven-plugin</xml> <xml>org.apache.maven.plugins:maven-jar-plugin:2.2:maven-plugin</xml> <xml>org.apache.maven.plugins:maven-install-plugin:2.2:maven-plugin</xml> <xml>org.apache.maven.plugins:maven-deploy-plugin:2.5:maven-plugin</xml> <xml>org.apache.maven.plugins:maven-site-plugin:2.0-beta-7:maven-plugin</xml> <xml>org.apache.maven.plugins:maven-release-plugin:2.0-beta-6:maven-plugin</xml> <xml>org.apache.felix:maven-bundle-plugin:1.4.3</xml> <xml>org.osgi:org.osgi.core:4.0.1</xml> <xml>org.osgi:org.osgi.compendium:4.0.1</xml> <xml>javax.servlet:servlet-api:2.3</xml> <xml>commons-httpclient:commons-httpclient:3.1</xml> <xml>junit:junit:4.4</xml> <xml>org.easymock:easymock:2.3</xml> <xml>org.apache.maven.wagon:wagon-ssh-external:1.0-alpha-6</xml> </extraArtifacts> </configuration> </execution> <execution> <id>obr-fake-hosted</id> <phase>pre-integration-test</phase> <goals> <goal>install</goal> </goals> <configuration> <localRepositoryPath>${project.build.directory}/felix-repo</localRepositoryPath> <extraArtifacts> <xml>org.apache.felix:org.apache.felix.webconsole:3.0.0</xml> <xml>org.apache.felix:org.osgi.compendium:1.4.0</xml> <xml>org.apache.geronimo.specs:geronimo-servlet_3.0_spec:1.0</xml> <xml>org.apache.portals:portlet-api_2.0_spec:1.0</xml> </extraArtifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>