| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| - Copyright (c) 2010, 2014 SAP SE and others. |
| - All rights reserved. This program and the accompanying materials |
| - are made available under the terms of the Eclipse Public License v1.0 |
| - which accompanies this distribution, and is available at |
| - http://www.eclipse.org/legal/epl-v10.html |
| - |
| - Contributors: |
| - SAP SE - initial API and implementation |
| --> |
| <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.eclipse.tycho.nexus</groupId> |
| <artifactId>unzip-repository-plugin-parent</artifactId> |
| <version>0.15.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>unzip-repository-plugin-its</artifactId> |
| <name>Nexus Unzip Plugin - Integration Tests (Incubation)</name> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.sonatype.nexus</groupId> |
| <artifactId>nexus-testsuite-support</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.tycho.nexus</groupId> |
| <artifactId>unzip-repository-plugin</artifactId> |
| <version>${project.version}</version> |
| <scope>test</scope> |
| <type>zip</type> |
| <classifier>bundle</classifier> |
| </dependency> |
| <dependency> |
| <groupId>org.sonatype.nexus.assemblies</groupId> |
| <artifactId>nexus-bundle-template</artifactId> |
| <version>${nexus.version}</version> |
| <type>zip</type> |
| <classifier>bundle</classifier> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src/test/resources</directory> |
| <filtering>true</filtering> |
| <includes> |
| <include>**/*.properties</include> |
| </includes> |
| </resource> |
| <resource> |
| <directory>src/test/resources</directory> |
| <filtering>false</filtering> |
| <excludes> |
| <exclude>**/*.properties</exclude> |
| </excludes> |
| </resource> |
| </resources> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-failsafe-plugin</artifactId> |
| <version>2.12.4</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>integration-test</goal> |
| <goal>verify</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <!-- this module contains tests only. The following plugins are switched off --> |
| <plugin> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>2.4</version> |
| <executions> |
| <execution> |
| <id>default-jar</id> |
| <phase>none</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-install-plugin</artifactId> |
| <version>2.4</version> |
| <executions> |
| <execution> |
| <id>default-install</id> |
| <phase>none</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>2.7</version> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |