blob: 183e63290ba1c60d855b034b324c9cf1613c4a67 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--#======================================================================= -->
<!--# Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany). -->
<!--# All rights reserved. This program and the accompanying materials -->
<!--# are made available under the terms of the Eclipse Public License 2.0 -->
<!--# which accompanies this distribution, and is available at -->
<!--# https://www.eclipse.org/legal/epl-2.0/ -->
<!--# -->
<!--# SPDX-License-Identifier: EPL-2.0 -->
<!--# -->
<!--# Contributors: -->
<!--# Christophe Loetz (Loetz GmbH&Co.KG) - 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.osbp.dependencies</groupId>
<artifactId>org.eclipse.osbp.dependencies</artifactId>
<version>0.9.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>org.eclipse.osbp.dependencies.feature.assert_utilities</artifactId>
<version>1.3.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
<repositories>
<repository>
<id>lds-main</id>
<name>Main Approved LDS Repo</name>
<url>http://code.lds.org/nexus/content/groups/main-repo</url>
</repository>
</repositories>
<dependencies>
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=15159 -->
<!-- org.junit 4.12 from Orbit -->
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=12725 -->
<!-- org.mockito 1.9.5 from Orbit -->
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=12912 -->
<dependency>
<groupId>org.knowhowlab.osgi</groupId>
<artifactId>org.knowhowlab.osgi.testing.utils</artifactId>
<exclusions>
<exclusion>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</exclusion>
<exclusion>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=12911 -->
<dependency>
<groupId>org.eclipse.osbp.dependencies</groupId>
<artifactId>org.eclipse.osbp.dependencies.bundle.knowhowlab.osgi.testing.assertions</artifactId>
<version>${osgi.testing.assertions.version}-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</exclusion>
<exclusion>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=12728 -->
<!-- org.objenesis from Orbit -->
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=12092 -->
<!-- com.google.guava 18.0.0.v20161115-1643 from Orbit -->
<!-- https://mvnrepository.com/artifact/javax.validation/validation-api -->
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=19218 -->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
</dependency>
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=12718 -->
<!-- org.hamcrest.core 1.3.0.v201303031735 from Orbit -->
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=12719 -->
<!-- org.hamcrest.library 1.3.0.v201505072020 from Orbit -->
<!-- CQ: https://dev.eclipse.org/ipzilla/show_bug.cgi?id=12161 -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>com.springsource.org.hamcrest.core</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-source-feature-plugin</artifactId>
<version>${tychoExtrasVersion}</version>
<executions>
<execution>
<id>source-feature</id>
<phase>package</phase>
<goals>
<goal>source-feature</goal>
</goals>
</execution>
</executions>
<configuration>
<labelSuffix> (source)</labelSuffix>
<excludes>
<plugin id="org.knowhowlab.osgi.testing.utils"/>
<plugin id="org.knowhowlab.osgi.testing.assertions"/>
<plugin id="com.google.guava"/>
<plugin id="com.springsource.org.hamcrest.core"/>
<plugin id="javax.validation.api"/>
</excludes>
</configuration>
</plugin>
<plugin>
<!-- workaround while bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=398250
is not fixed -->
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>attached-p2-metadata</id>
<phase>package</phase>
<goals>
<goal>p2-metadata</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>