xref: /JGit/org.eclipse.jgit.packaging/pom.xml (revision 9b31969f3c8b10747ee4af4fff83e9f45c6b41b0)
1f2455798SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
2f2455798SMatthias Sohn<!--
3536db18cSMatthias Sohn   Copyright (C) 2009, 2015, Matthias Sohn <matthias.sohn@sap.com>
4f2455798SMatthias Sohn   and other copyright owners as documented in the project's IP log.
5f2455798SMatthias Sohn
6f2455798SMatthias Sohn   This program and the accompanying materials are made available
7f2455798SMatthias Sohn   under the terms of the Eclipse Distribution License v1.0 which
8f2455798SMatthias Sohn   accompanies this distribution, is reproduced below, and is
9f2455798SMatthias Sohn   available at http://www.eclipse.org/org/documents/edl-v10.php
10f2455798SMatthias Sohn
11f2455798SMatthias Sohn   All rights reserved.
12f2455798SMatthias Sohn
13f2455798SMatthias Sohn   Redistribution and use in source and binary forms, with or
14f2455798SMatthias Sohn   without modification, are permitted provided that the following
15f2455798SMatthias Sohn   conditions are met:
16f2455798SMatthias Sohn
17f2455798SMatthias Sohn   - Redistributions of source code must retain the above copyright
18f2455798SMatthias Sohn     notice, this list of conditions and the following disclaimer.
19f2455798SMatthias Sohn
20f2455798SMatthias Sohn   - Redistributions in binary form must reproduce the above
21f2455798SMatthias Sohn     copyright notice, this list of conditions and the following
22f2455798SMatthias Sohn     disclaimer in the documentation and/or other materials provided
23f2455798SMatthias Sohn     with the distribution.
24f2455798SMatthias Sohn
25f2455798SMatthias Sohn   - Neither the name of the Eclipse Foundation, Inc. nor the
26f2455798SMatthias Sohn     names of its contributors may be used to endorse or promote
27f2455798SMatthias Sohn     products derived from this software without specific prior
28f2455798SMatthias Sohn     written permission.
29f2455798SMatthias Sohn
30f2455798SMatthias Sohn   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31f2455798SMatthias Sohn   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32f2455798SMatthias Sohn   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33f2455798SMatthias Sohn   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34f2455798SMatthias Sohn   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35f2455798SMatthias Sohn   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36f2455798SMatthias Sohn   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37f2455798SMatthias Sohn   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38f2455798SMatthias Sohn   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39f2455798SMatthias Sohn   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40f2455798SMatthias Sohn   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41f2455798SMatthias Sohn   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42f2455798SMatthias Sohn   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43f2455798SMatthias Sohn-->
44f2455798SMatthias Sohn
45f2455798SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
46f2455798SMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
47f2455798SMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
48f2455798SMatthias Sohn  <modelVersion>4.0.0</modelVersion>
49f2455798SMatthias Sohn
50f2455798SMatthias Sohn  <prerequisites>
51f2455798SMatthias Sohn    <maven>3.0</maven>
52f2455798SMatthias Sohn  </prerequisites>
53f2455798SMatthias Sohn
54f2455798SMatthias Sohn  <groupId>org.eclipse.jgit</groupId>
55f2455798SMatthias Sohn  <artifactId>jgit.tycho.parent</artifactId>
562fae326aSMatthias Sohn  <version>5.2.0-SNAPSHOT</version>
57f2455798SMatthias Sohn  <packaging>pom</packaging>
58f2455798SMatthias Sohn
59f5f1536fSMatthias Sohn  <name>JGit Tycho Parent</name>
60f2455798SMatthias Sohn
61f2455798SMatthias Sohn  <properties>
6254e895b8SMichael Keppler    <tycho-version>1.2.0</tycho-version>
637948903aSMatthias Sohn    <tycho-extras-version>${tycho-version}</tycho-extras-version>
64e8705a6eSMatthias Sohn    <target-platform>jgit-4.6</target-platform>
65f2455798SMatthias Sohn  </properties>
66f2455798SMatthias Sohn
67b97a35d7SMatthias Sohn  <pluginRepositories>
68b97a35d7SMatthias Sohn    <pluginRepository>
69b97a35d7SMatthias Sohn      <id>repo.eclipse.org.cbi-releases</id>
70b97a35d7SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
71b97a35d7SMatthias Sohn    </pluginRepository>
724f9bdc8bSMatthias Sohn    <pluginRepository>
734f9bdc8bSMatthias Sohn      <id>repo.eclipse.org.cbi-snapshots</id>
744f9bdc8bSMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/cbi-snapshots/</url>
754f9bdc8bSMatthias Sohn    </pluginRepository>
76b97a35d7SMatthias Sohn  </pluginRepositories>
77b97a35d7SMatthias Sohn
78f2455798SMatthias Sohn  <modules>
7977d2f3caSMatthias Sohn    <module>org.eclipse.jgit.target</module>
80f2455798SMatthias Sohn    <module>org.eclipse.jgit.feature</module>
813d3df394SMatthias Sohn    <module>org.eclipse.jgit.http.apache.feature</module>
82*9b31969fSThomas Wolf    <module>org.eclipse.jgit.ssh.apache.feature</module>
83536db18cSMatthias Sohn    <module>org.eclipse.jgit.lfs.feature</module>
844974090dSMatthias Sohn    <module>org.eclipse.jgit.pgm.feature</module>
8551f6fbdaSMatthias Sohn    <module>org.eclipse.jgit.source.feature</module>
864974090dSMatthias Sohn    <module>org.eclipse.jgit.pgm.source.feature</module>
87*9b31969fSThomas Wolf    <module>org.eclipse.jgit.ssh.apache.source.feature</module>
88e36c2aa8SMatthias Sohn    <module>org.eclipse.jgit.junit.feature</module>
8943543e79SMatthias Sohn    <module>org.eclipse.jgit.repository</module>
90f2455798SMatthias Sohn  </modules>
91f2455798SMatthias Sohn
92af64b9a3SMatthias Sohn  <distributionManagement>
93af64b9a3SMatthias Sohn    <repository>
94af64b9a3SMatthias Sohn      <id>repo.eclipse.org</id>
95af64b9a3SMatthias Sohn      <name>JGit Maven Repository - Releases</name>
96af64b9a3SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/jgit-releases/</url>
97af64b9a3SMatthias Sohn    </repository>
98af64b9a3SMatthias Sohn    <snapshotRepository>
99af64b9a3SMatthias Sohn      <id>repo.eclipse.org</id>
100af64b9a3SMatthias Sohn      <name>JGit Maven Repository - Snapshots</name>
101af64b9a3SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/jgit-snapshots/</url>
102af64b9a3SMatthias Sohn      <uniqueVersion>true</uniqueVersion>
103af64b9a3SMatthias Sohn    </snapshotRepository>
104af64b9a3SMatthias Sohn  </distributionManagement>
105af64b9a3SMatthias Sohn
10651f6fbdaSMatthias Sohn  <dependencies>
10751f6fbdaSMatthias Sohn    <!-- sources artifacts so that we can place them in the features -->
10851f6fbdaSMatthias Sohn    <dependency>
10951f6fbdaSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
11051f6fbdaSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
11177d2f3caSMatthias Sohn      <version>${project.version}</version>
11251f6fbdaSMatthias Sohn      <classifier>sources</classifier>
11351f6fbdaSMatthias Sohn    </dependency>
1144974090dSMatthias Sohn    <dependency>
1154974090dSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
1164974090dSMatthias Sohn      <artifactId>org.eclipse.jgit.pgm</artifactId>
1174974090dSMatthias Sohn      <version>${project.version}</version>
1184974090dSMatthias Sohn      <classifier>sources</classifier>
1194974090dSMatthias Sohn    </dependency>
120*9b31969fSThomas Wolf    <dependency>
121*9b31969fSThomas Wolf      <groupId>org.eclipse.jgit</groupId>
122*9b31969fSThomas Wolf      <artifactId>org.eclipse.jgit.ssh.apache</artifactId>
123*9b31969fSThomas Wolf      <version>${project.version}</version>
124*9b31969fSThomas Wolf      <classifier>sources</classifier>
125*9b31969fSThomas Wolf    </dependency>
12651f6fbdaSMatthias Sohn  </dependencies>
12751f6fbdaSMatthias Sohn
128f2455798SMatthias Sohn  <build>
129f2455798SMatthias Sohn    <plugins>
130f2455798SMatthias Sohn      <plugin>
13165848638SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
13265848638SMatthias Sohn        <artifactId>maven-enforcer-plugin</artifactId>
13365848638SMatthias Sohn        <version>3.0.0-M1</version>
13465848638SMatthias Sohn        <executions>
13565848638SMatthias Sohn          <execution>
13665848638SMatthias Sohn            <id>enforce-maven</id>
13765848638SMatthias Sohn            <goals>
13865848638SMatthias Sohn              <goal>enforce</goal>
13965848638SMatthias Sohn            </goals>
14065848638SMatthias Sohn            <configuration>
14165848638SMatthias Sohn              <rules>
14265848638SMatthias Sohn                <requireMavenVersion>
14365848638SMatthias Sohn                  <version>3.5.2</version>
14465848638SMatthias Sohn                </requireMavenVersion>
14565848638SMatthias Sohn              </rules>
14665848638SMatthias Sohn            </configuration>
14765848638SMatthias Sohn          </execution>
14865848638SMatthias Sohn        </executions>
14965848638SMatthias Sohn      </plugin>
15065848638SMatthias Sohn      <plugin>
1514e7c2f80SChris Aniszczyk        <groupId>org.eclipse.tycho</groupId>
152f2455798SMatthias Sohn        <artifactId>tycho-maven-plugin</artifactId>
153f2455798SMatthias Sohn        <version>${tycho-version}</version>
154f2455798SMatthias Sohn        <extensions>true</extensions>
155f2455798SMatthias Sohn      </plugin>
156f2455798SMatthias Sohn      <plugin>
1574e7c2f80SChris Aniszczyk        <groupId>org.eclipse.tycho</groupId>
158f2455798SMatthias Sohn        <artifactId>target-platform-configuration</artifactId>
159f2455798SMatthias Sohn        <version>${tycho-version}</version>
160f2455798SMatthias Sohn        <configuration>
161f2455798SMatthias Sohn          <resolver>p2</resolver>
162f2455798SMatthias Sohn        </configuration>
163f2455798SMatthias Sohn      </plugin>
164f2455798SMatthias Sohn    </plugins>
165f2455798SMatthias Sohn    <pluginManagement>
166f2455798SMatthias Sohn      <plugins>
167f2455798SMatthias Sohn        <plugin>
1684e7c2f80SChris Aniszczyk          <groupId>org.eclipse.tycho</groupId>
1694e7c2f80SChris Aniszczyk          <artifactId>tycho-compiler-plugin</artifactId>
170f2455798SMatthias Sohn          <version>${tycho-version}</version>
171f2455798SMatthias Sohn          <configuration>
172f2455798SMatthias Sohn            <encoding>UTF-8</encoding>
173ab79ce91SMatthias Sohn            <source>1.8</source>
174ab79ce91SMatthias Sohn            <target>1.8</target>
175f2455798SMatthias Sohn          </configuration>
176f2455798SMatthias Sohn        </plugin>
177f2455798SMatthias Sohn        <plugin>
178f2455798SMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
179f2455798SMatthias Sohn          <artifactId>maven-resources-plugin</artifactId>
180b92136f0SMatthias Sohn          <version>3.1.0</version>
181f2455798SMatthias Sohn          <configuration>
182f2455798SMatthias Sohn            <encoding>ISO-8859-1</encoding>
183f2455798SMatthias Sohn          </configuration>
184f2455798SMatthias Sohn        </plugin>
185f2455798SMatthias Sohn        <plugin>
1864e7c2f80SChris Aniszczyk          <groupId>org.eclipse.tycho</groupId>
187f2455798SMatthias Sohn          <artifactId>target-platform-configuration</artifactId>
188f2455798SMatthias Sohn          <version>${tycho-version}</version>
189f2455798SMatthias Sohn          <configuration>
190f2455798SMatthias Sohn            <resolver>p2</resolver>
191f2455798SMatthias Sohn            <pomDependencies>consider</pomDependencies>
19277d2f3caSMatthias Sohn            <target>
19377d2f3caSMatthias Sohn              <artifact>
19477d2f3caSMatthias Sohn                <groupId>org.eclipse.jgit</groupId>
19577d2f3caSMatthias Sohn                <artifactId>org.eclipse.jgit.target</artifactId>
19677d2f3caSMatthias Sohn                <version>${project.version}</version>
1978399a9bcSMatthias Sohn                <classifier>${target-platform}</classifier>
19877d2f3caSMatthias Sohn              </artifact>
19977d2f3caSMatthias Sohn            </target>
20044274434SMatthias Sohn            <environments>
20144274434SMatthias Sohn              <environment>
20244274434SMatthias Sohn                <os>linux</os>
20344274434SMatthias Sohn                <ws>gtk</ws>
20444274434SMatthias Sohn                <arch>x86</arch>
20544274434SMatthias Sohn              </environment>
20644274434SMatthias Sohn              <environment>
20744274434SMatthias Sohn                <os>linux</os>
20844274434SMatthias Sohn                <ws>gtk</ws>
20944274434SMatthias Sohn                <arch>x86_64</arch>
21044274434SMatthias Sohn              </environment>
21144274434SMatthias Sohn              <environment>
21244274434SMatthias Sohn                <os>win32</os>
21344274434SMatthias Sohn                <ws>win32</ws>
21444274434SMatthias Sohn                <arch>x86</arch>
21544274434SMatthias Sohn              </environment>
21644274434SMatthias Sohn              <environment>
21744274434SMatthias Sohn                <os>win32</os>
21844274434SMatthias Sohn                <ws>win32</ws>
21944274434SMatthias Sohn                <arch>x86_64</arch>
22044274434SMatthias Sohn              </environment>
22144274434SMatthias Sohn              <environment>
22244274434SMatthias Sohn                <os>macosx</os>
22344274434SMatthias Sohn                <ws>cocoa</ws>
22444274434SMatthias Sohn                <arch>x86_64</arch>
22544274434SMatthias Sohn              </environment>
22644274434SMatthias Sohn            </environments>
227f2455798SMatthias Sohn          </configuration>
228f2455798SMatthias Sohn        </plugin>
229b97a35d7SMatthias Sohn        <plugin>
230b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
231b97a35d7SMatthias Sohn          <artifactId>tycho-p2-plugin</artifactId>
232b97a35d7SMatthias Sohn          <version>${tycho-version}</version>
233b97a35d7SMatthias Sohn        </plugin>
234b97a35d7SMatthias Sohn        <plugin>
235b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho.extras</groupId>
236b97a35d7SMatthias Sohn          <artifactId>tycho-pack200a-plugin</artifactId>
237b97a35d7SMatthias Sohn          <version>${tycho-extras-version}</version>
238b97a35d7SMatthias Sohn        </plugin>
239b97a35d7SMatthias Sohn        <plugin>
240b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho.extras</groupId>
241b97a35d7SMatthias Sohn          <artifactId>tycho-pack200b-plugin</artifactId>
242b97a35d7SMatthias Sohn          <version>${tycho-extras-version}</version>
243b97a35d7SMatthias Sohn        </plugin>
244b97a35d7SMatthias Sohn        <plugin>
245b97a35d7SMatthias Sohn          <groupId>org.eclipse.cbi.maven.plugins</groupId>
246b97a35d7SMatthias Sohn          <artifactId>eclipse-jarsigner-plugin</artifactId>
247b92136f0SMatthias Sohn          <version>1.1.5</version>
248b97a35d7SMatthias Sohn        </plugin>
2498399a9bcSMatthias Sohn        <plugin>
2508399a9bcSMatthias Sohn          <groupId>org.codehaus.mojo</groupId>
2518399a9bcSMatthias Sohn          <artifactId>build-helper-maven-plugin</artifactId>
252b92136f0SMatthias Sohn          <version>3.0.0</version>
2538399a9bcSMatthias Sohn        </plugin>
254f2455798SMatthias Sohn      </plugins>
255f2455798SMatthias Sohn    </pluginManagement>
256f2455798SMatthias Sohn  </build>
257dcddaa94SMatthias Sohn
258b97a35d7SMatthias Sohn  <profiles>
259b97a35d7SMatthias Sohn    <profile>
260b97a35d7SMatthias Sohn      <id>eclipse-sign</id>
261b97a35d7SMatthias Sohn      <build>
262b97a35d7SMatthias Sohn        <plugins>
263b97a35d7SMatthias Sohn          <plugin>
264b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
265b97a35d7SMatthias Sohn            <artifactId>target-platform-configuration</artifactId>
266b97a35d7SMatthias Sohn            <configuration>
267b97a35d7SMatthias Sohn              <includePackedArtifacts>true</includePackedArtifacts>
268b97a35d7SMatthias Sohn            </configuration>
269b97a35d7SMatthias Sohn          </plugin>
270b97a35d7SMatthias Sohn          <plugin>
271b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
272b97a35d7SMatthias Sohn            <artifactId>tycho-pack200a-plugin</artifactId>
273b97a35d7SMatthias Sohn            <executions>
274b97a35d7SMatthias Sohn              <execution>
275b97a35d7SMatthias Sohn                <id>pack200-normalize</id>
276b97a35d7SMatthias Sohn                <goals>
277b97a35d7SMatthias Sohn                  <goal>normalize</goal>
278b97a35d7SMatthias Sohn                </goals>
279b97a35d7SMatthias Sohn                <phase>verify</phase>
280b97a35d7SMatthias Sohn              </execution>
281b97a35d7SMatthias Sohn            </executions>
282b97a35d7SMatthias Sohn          </plugin>
283b97a35d7SMatthias Sohn          <plugin>
284b97a35d7SMatthias Sohn            <groupId>org.eclipse.cbi.maven.plugins</groupId>
285b97a35d7SMatthias Sohn            <artifactId>eclipse-jarsigner-plugin</artifactId>
286b97a35d7SMatthias Sohn            <executions>
287b97a35d7SMatthias Sohn              <execution>
288b97a35d7SMatthias Sohn                <id>sign</id>
289b97a35d7SMatthias Sohn                <goals>
290b97a35d7SMatthias Sohn                  <goal>sign</goal>
291b97a35d7SMatthias Sohn                </goals>
292b97a35d7SMatthias Sohn                <phase>verify</phase>
293b97a35d7SMatthias Sohn              </execution>
294b97a35d7SMatthias Sohn            </executions>
295b97a35d7SMatthias Sohn          </plugin>
296b97a35d7SMatthias Sohn          <plugin>
297b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
298b97a35d7SMatthias Sohn            <artifactId>tycho-pack200b-plugin</artifactId>
299b97a35d7SMatthias Sohn            <executions>
300b97a35d7SMatthias Sohn              <execution>
301b97a35d7SMatthias Sohn                <id>pack200-pack</id>
302b97a35d7SMatthias Sohn                <goals>
303b97a35d7SMatthias Sohn                  <goal>pack</goal>
304b97a35d7SMatthias Sohn                </goals>
305b97a35d7SMatthias Sohn                <phase>verify</phase>
306b97a35d7SMatthias Sohn              </execution>
307b97a35d7SMatthias Sohn            </executions>
308b97a35d7SMatthias Sohn          </plugin>
309b97a35d7SMatthias Sohn          <plugin>
310b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
311b97a35d7SMatthias Sohn            <artifactId>tycho-p2-plugin</artifactId>
312b97a35d7SMatthias Sohn            <executions>
313b97a35d7SMatthias Sohn              <execution>
314b97a35d7SMatthias Sohn                <id>p2-metadata</id>
315b97a35d7SMatthias Sohn                <goals>
316b97a35d7SMatthias Sohn                  <goal>p2-metadata</goal>
317b97a35d7SMatthias Sohn                </goals>
318b97a35d7SMatthias Sohn                <phase>verify</phase>
319b97a35d7SMatthias Sohn              </execution>
320b97a35d7SMatthias Sohn            </executions>
321b97a35d7SMatthias Sohn            <configuration>
322b97a35d7SMatthias Sohn              <defaultP2Metadata>false</defaultP2Metadata>
323b97a35d7SMatthias Sohn            </configuration>
324b97a35d7SMatthias Sohn          </plugin>
325b97a35d7SMatthias Sohn        </plugins>
326b97a35d7SMatthias Sohn      </build>
327b97a35d7SMatthias Sohn    </profile>
328b97a35d7SMatthias Sohn    <profile>
329b97a35d7SMatthias Sohn      <id>eclipse-pack</id>
330b97a35d7SMatthias Sohn      <build>
331b97a35d7SMatthias Sohn        <plugins>
332b97a35d7SMatthias Sohn          <plugin>
333b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
334b97a35d7SMatthias Sohn            <artifactId>target-platform-configuration</artifactId>
335b97a35d7SMatthias Sohn            <configuration>
336b97a35d7SMatthias Sohn              <includePackedArtifacts>true</includePackedArtifacts>
337b97a35d7SMatthias Sohn            </configuration>
338b97a35d7SMatthias Sohn          </plugin>
339b97a35d7SMatthias Sohn          <plugin>
340b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
341b97a35d7SMatthias Sohn            <artifactId>tycho-pack200a-plugin</artifactId>
342b97a35d7SMatthias Sohn            <executions>
343b97a35d7SMatthias Sohn              <execution>
344b97a35d7SMatthias Sohn                <id>pack200-normalize</id>
345b97a35d7SMatthias Sohn                <goals>
346b97a35d7SMatthias Sohn                  <goal>normalize</goal>
347b97a35d7SMatthias Sohn                </goals>
348b97a35d7SMatthias Sohn              </execution>
349b97a35d7SMatthias Sohn            </executions>
350b97a35d7SMatthias Sohn          </plugin>
351b97a35d7SMatthias Sohn          <plugin>
352b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
353b97a35d7SMatthias Sohn            <artifactId>tycho-pack200b-plugin</artifactId>
354b97a35d7SMatthias Sohn            <executions>
355b97a35d7SMatthias Sohn              <execution>
356b97a35d7SMatthias Sohn                <id>pack200-pack</id>
357b97a35d7SMatthias Sohn                <goals>
358b97a35d7SMatthias Sohn                  <goal>pack</goal>
359b97a35d7SMatthias Sohn                </goals>
360b97a35d7SMatthias Sohn              </execution>
361b97a35d7SMatthias Sohn            </executions>
362b97a35d7SMatthias Sohn          </plugin>
363b97a35d7SMatthias Sohn          <plugin>
364b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
365b97a35d7SMatthias Sohn            <artifactId>tycho-p2-plugin</artifactId>
366b97a35d7SMatthias Sohn            <executions>
367b97a35d7SMatthias Sohn              <execution>
368b97a35d7SMatthias Sohn                <id>p2-metadata</id>
369b97a35d7SMatthias Sohn                <goals>
370b97a35d7SMatthias Sohn                  <goal>p2-metadata</goal>
371b97a35d7SMatthias Sohn                </goals>
372b97a35d7SMatthias Sohn                <phase>package</phase>
373b97a35d7SMatthias Sohn              </execution>
374b97a35d7SMatthias Sohn            </executions>
375b97a35d7SMatthias Sohn            <configuration>
376b97a35d7SMatthias Sohn              <defaultP2Metadata>false</defaultP2Metadata>
377b97a35d7SMatthias Sohn            </configuration>
378b97a35d7SMatthias Sohn          </plugin>
379b97a35d7SMatthias Sohn        </plugins>
380b97a35d7SMatthias Sohn      </build>
381b97a35d7SMatthias Sohn    </profile>
382b97a35d7SMatthias Sohn  </profiles>
383f2455798SMatthias Sohn</project>
384