blob: 2024b89b2103259349aba00ac365d779e67c248e [file] [log] [blame]
Ralf Mollik9be66582018-07-05 10:05:05 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3#=======================================================================
4# Copyright (c) 2017 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany).
5# All rights reserved. This program and the accompanying materials
6# are made available under the terms of the Eclipse Public License 2.0
7# which accompanies this distribution, and is available at
8# https://www.eclipse.org/legal/epl-2.0/
9#
10# SPDX-License-Identifier: EPL-2.0
11#
12# Contributors:
13# Loetz GmbH&Co.KG - initial API and implementation
14#=======================================================================
15-->
16<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">
17 <modelVersion>4.0.0</modelVersion>
18
19 <parent>
20 <groupId>org.eclipse.osbp.runtime.functionlibrary.validation</groupId>
21 <artifactId>org.eclipse.osbp.runtime.functionlibrary.validation.aggregator</artifactId>
22 <version>0.9.0-SNAPSHOT</version>
23 </parent>
24
25 <artifactId>org.eclipse.osbp.runtime.functionlibrary.validation.feature</artifactId>
26 <packaging>eclipse-feature</packaging>
27
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.eclipse.tycho.extras</groupId>
32 <artifactId>tycho-source-feature-plugin</artifactId>
33 <version>${tychoExtrasVersion}</version>
34 <executions>
35 <execution>
36 <id>source-feature</id>
37 <phase>package</phase>
38 <goals>
39 <goal>source-feature</goal>
40 </goals>
41 </execution>
42 </executions>
43 <configuration>
44 <labelSuffix> (source)</labelSuffix>
45 </configuration>
46 </plugin>
47 <plugin>
48 <!-- workaround while bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=398250
49 is not fixed -->
50 <groupId>org.eclipse.tycho</groupId>
51 <artifactId>tycho-p2-plugin</artifactId>
52 <version>${tycho-version}</version>
53 <executions>
54 <execution>
55 <id>attached-p2-metadata</id>
56 <phase>package</phase>
57 <goals>
58 <goal>p2-metadata</goal>
59 </goals>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <artifactId>maven-javadoc-plugin</artifactId>
65 <executions>
66 <execution>
67 <id>javadoc-jar</id>
68 <phase>package</phase>
69 <goals>
70 <goal>jar</goal>
71 </goals>
72 </execution>
73 </executions>
74 </plugin>
75 </plugins>
76 </build>
77
78 <dependencies>
79 <dependency>
80 <groupId>org.eclipse.osbp.runtime.functionlibrary.validation</groupId>
81 <artifactId>org.eclipse.osbp.runtime.functionlibrary.validation</artifactId>
82 <version>${project.version}</version>
83 </dependency>
84 </dependencies>
85
86</project>