xref: /JGit/org.eclipse.jgit.packaging/pom.xml (revision 2d0a1adf0529d5d23c7752437d664784a2e4a578)
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  <groupId>org.eclipse.jgit</groupId>
51f2455798SMatthias Sohn  <artifactId>jgit.tycho.parent</artifactId>
5257ccca75SMatthias Sohn  <version>5.1.9-SNAPSHOT</version>
53f2455798SMatthias Sohn  <packaging>pom</packaging>
54f2455798SMatthias Sohn
55f5f1536fSMatthias Sohn  <name>JGit Tycho Parent</name>
56f2455798SMatthias Sohn
57f2455798SMatthias Sohn  <properties>
58*2d0a1adfSMatthias Sohn    <tycho-version>1.3.0</tycho-version>
597948903aSMatthias Sohn    <tycho-extras-version>${tycho-version}</tycho-extras-version>
60e8705a6eSMatthias Sohn    <target-platform>jgit-4.6</target-platform>
61f2455798SMatthias Sohn  </properties>
62f2455798SMatthias Sohn
63b97a35d7SMatthias Sohn  <pluginRepositories>
64b97a35d7SMatthias Sohn    <pluginRepository>
65b97a35d7SMatthias Sohn      <id>repo.eclipse.org.cbi-releases</id>
66b97a35d7SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
67b97a35d7SMatthias Sohn    </pluginRepository>
684f9bdc8bSMatthias Sohn    <pluginRepository>
694f9bdc8bSMatthias Sohn      <id>repo.eclipse.org.cbi-snapshots</id>
704f9bdc8bSMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/cbi-snapshots/</url>
714f9bdc8bSMatthias Sohn    </pluginRepository>
72b97a35d7SMatthias Sohn  </pluginRepositories>
73b97a35d7SMatthias Sohn
74f2455798SMatthias Sohn  <modules>
7577d2f3caSMatthias Sohn    <module>org.eclipse.jgit.target</module>
76f2455798SMatthias Sohn    <module>org.eclipse.jgit.feature</module>
773d3df394SMatthias Sohn    <module>org.eclipse.jgit.http.apache.feature</module>
78536db18cSMatthias Sohn    <module>org.eclipse.jgit.lfs.feature</module>
794974090dSMatthias Sohn    <module>org.eclipse.jgit.pgm.feature</module>
8051f6fbdaSMatthias Sohn    <module>org.eclipse.jgit.source.feature</module>
814974090dSMatthias Sohn    <module>org.eclipse.jgit.pgm.source.feature</module>
82e36c2aa8SMatthias Sohn    <module>org.eclipse.jgit.junit.feature</module>
8343543e79SMatthias Sohn    <module>org.eclipse.jgit.repository</module>
84f2455798SMatthias Sohn  </modules>
85f2455798SMatthias Sohn
86af64b9a3SMatthias Sohn  <distributionManagement>
87af64b9a3SMatthias Sohn    <repository>
88af64b9a3SMatthias Sohn      <id>repo.eclipse.org</id>
89af64b9a3SMatthias Sohn      <name>JGit Maven Repository - Releases</name>
90af64b9a3SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/jgit-releases/</url>
91af64b9a3SMatthias Sohn    </repository>
92af64b9a3SMatthias Sohn    <snapshotRepository>
93af64b9a3SMatthias Sohn      <id>repo.eclipse.org</id>
94af64b9a3SMatthias Sohn      <name>JGit Maven Repository - Snapshots</name>
95af64b9a3SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/jgit-snapshots/</url>
96af64b9a3SMatthias Sohn      <uniqueVersion>true</uniqueVersion>
97af64b9a3SMatthias Sohn    </snapshotRepository>
98af64b9a3SMatthias Sohn  </distributionManagement>
99af64b9a3SMatthias Sohn
10051f6fbdaSMatthias Sohn  <dependencies>
10151f6fbdaSMatthias Sohn    <!-- sources artifacts so that we can place them in the features -->
10251f6fbdaSMatthias Sohn    <dependency>
10351f6fbdaSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
10451f6fbdaSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
10577d2f3caSMatthias Sohn      <version>${project.version}</version>
10651f6fbdaSMatthias Sohn      <classifier>sources</classifier>
10751f6fbdaSMatthias Sohn    </dependency>
1084974090dSMatthias Sohn    <dependency>
1094974090dSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
1104974090dSMatthias Sohn      <artifactId>org.eclipse.jgit.pgm</artifactId>
1114974090dSMatthias Sohn      <version>${project.version}</version>
1124974090dSMatthias Sohn      <classifier>sources</classifier>
1134974090dSMatthias Sohn    </dependency>
11451f6fbdaSMatthias Sohn  </dependencies>
11551f6fbdaSMatthias Sohn
116f2455798SMatthias Sohn  <build>
117f2455798SMatthias Sohn    <plugins>
118f2455798SMatthias Sohn      <plugin>
11965848638SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
12065848638SMatthias Sohn        <artifactId>maven-enforcer-plugin</artifactId>
12165848638SMatthias Sohn        <version>3.0.0-M1</version>
12265848638SMatthias Sohn        <executions>
12365848638SMatthias Sohn          <execution>
12465848638SMatthias Sohn            <id>enforce-maven</id>
12565848638SMatthias Sohn            <goals>
12665848638SMatthias Sohn              <goal>enforce</goal>
12765848638SMatthias Sohn            </goals>
12865848638SMatthias Sohn            <configuration>
12965848638SMatthias Sohn              <rules>
13065848638SMatthias Sohn                <requireMavenVersion>
13165848638SMatthias Sohn                  <version>3.5.2</version>
13265848638SMatthias Sohn                </requireMavenVersion>
13365848638SMatthias Sohn              </rules>
13465848638SMatthias Sohn            </configuration>
13565848638SMatthias Sohn          </execution>
13665848638SMatthias Sohn        </executions>
13765848638SMatthias Sohn      </plugin>
13865848638SMatthias Sohn      <plugin>
1394e7c2f80SChris Aniszczyk        <groupId>org.eclipse.tycho</groupId>
140f2455798SMatthias Sohn        <artifactId>tycho-maven-plugin</artifactId>
141f2455798SMatthias Sohn        <version>${tycho-version}</version>
142f2455798SMatthias Sohn        <extensions>true</extensions>
143f2455798SMatthias Sohn      </plugin>
144f2455798SMatthias Sohn      <plugin>
1454e7c2f80SChris Aniszczyk        <groupId>org.eclipse.tycho</groupId>
146f2455798SMatthias Sohn        <artifactId>target-platform-configuration</artifactId>
147f2455798SMatthias Sohn        <version>${tycho-version}</version>
148f2455798SMatthias Sohn        <configuration>
149f2455798SMatthias Sohn          <resolver>p2</resolver>
150f2455798SMatthias Sohn        </configuration>
151f2455798SMatthias Sohn      </plugin>
152f2455798SMatthias Sohn    </plugins>
153f2455798SMatthias Sohn    <pluginManagement>
154f2455798SMatthias Sohn      <plugins>
155f2455798SMatthias Sohn        <plugin>
1564e7c2f80SChris Aniszczyk          <groupId>org.eclipse.tycho</groupId>
1574e7c2f80SChris Aniszczyk          <artifactId>tycho-compiler-plugin</artifactId>
158f2455798SMatthias Sohn          <version>${tycho-version}</version>
159f2455798SMatthias Sohn          <configuration>
160f2455798SMatthias Sohn            <encoding>UTF-8</encoding>
161ab79ce91SMatthias Sohn            <source>1.8</source>
162ab79ce91SMatthias Sohn            <target>1.8</target>
163f2455798SMatthias Sohn          </configuration>
164f2455798SMatthias Sohn        </plugin>
165f2455798SMatthias Sohn        <plugin>
166f2455798SMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
167f2455798SMatthias Sohn          <artifactId>maven-resources-plugin</artifactId>
168b92136f0SMatthias Sohn          <version>3.1.0</version>
169f2455798SMatthias Sohn          <configuration>
170f2455798SMatthias Sohn            <encoding>ISO-8859-1</encoding>
171f2455798SMatthias Sohn          </configuration>
172f2455798SMatthias Sohn        </plugin>
173f2455798SMatthias Sohn        <plugin>
1744e7c2f80SChris Aniszczyk          <groupId>org.eclipse.tycho</groupId>
175f2455798SMatthias Sohn          <artifactId>target-platform-configuration</artifactId>
176f2455798SMatthias Sohn          <version>${tycho-version}</version>
177f2455798SMatthias Sohn          <configuration>
178f2455798SMatthias Sohn            <resolver>p2</resolver>
179f2455798SMatthias Sohn            <pomDependencies>consider</pomDependencies>
18077d2f3caSMatthias Sohn            <target>
18177d2f3caSMatthias Sohn              <artifact>
18277d2f3caSMatthias Sohn                <groupId>org.eclipse.jgit</groupId>
18377d2f3caSMatthias Sohn                <artifactId>org.eclipse.jgit.target</artifactId>
18477d2f3caSMatthias Sohn                <version>${project.version}</version>
1858399a9bcSMatthias Sohn                <classifier>${target-platform}</classifier>
18677d2f3caSMatthias Sohn              </artifact>
18777d2f3caSMatthias Sohn            </target>
18844274434SMatthias Sohn            <environments>
18944274434SMatthias Sohn              <environment>
19044274434SMatthias Sohn                <os>linux</os>
19144274434SMatthias Sohn                <ws>gtk</ws>
19244274434SMatthias Sohn                <arch>x86</arch>
19344274434SMatthias Sohn              </environment>
19444274434SMatthias Sohn              <environment>
19544274434SMatthias Sohn                <os>linux</os>
19644274434SMatthias Sohn                <ws>gtk</ws>
19744274434SMatthias Sohn                <arch>x86_64</arch>
19844274434SMatthias Sohn              </environment>
19944274434SMatthias Sohn              <environment>
20044274434SMatthias Sohn                <os>win32</os>
20144274434SMatthias Sohn                <ws>win32</ws>
20244274434SMatthias Sohn                <arch>x86</arch>
20344274434SMatthias Sohn              </environment>
20444274434SMatthias Sohn              <environment>
20544274434SMatthias Sohn                <os>win32</os>
20644274434SMatthias Sohn                <ws>win32</ws>
20744274434SMatthias Sohn                <arch>x86_64</arch>
20844274434SMatthias Sohn              </environment>
20944274434SMatthias Sohn              <environment>
21044274434SMatthias Sohn                <os>macosx</os>
21144274434SMatthias Sohn                <ws>cocoa</ws>
21244274434SMatthias Sohn                <arch>x86_64</arch>
21344274434SMatthias Sohn              </environment>
21444274434SMatthias Sohn            </environments>
215f2455798SMatthias Sohn          </configuration>
216f2455798SMatthias Sohn        </plugin>
217b97a35d7SMatthias Sohn        <plugin>
218b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
219b97a35d7SMatthias Sohn          <artifactId>tycho-p2-plugin</artifactId>
220b97a35d7SMatthias Sohn          <version>${tycho-version}</version>
221b97a35d7SMatthias Sohn        </plugin>
222b97a35d7SMatthias Sohn        <plugin>
223*2d0a1adfSMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
224*2d0a1adfSMatthias Sohn          <artifactId>tycho-p2-publisher-plugin</artifactId>
225*2d0a1adfSMatthias Sohn          <version>${tycho-version}</version>
226*2d0a1adfSMatthias Sohn        </plugin>
227*2d0a1adfSMatthias Sohn        <plugin>
228*2d0a1adfSMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
229*2d0a1adfSMatthias Sohn          <artifactId>tycho-p2-repository-plugin</artifactId>
230*2d0a1adfSMatthias Sohn          <version>${tycho-version}</version>
231*2d0a1adfSMatthias Sohn        </plugin>
232*2d0a1adfSMatthias Sohn        <plugin>
233*2d0a1adfSMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
234*2d0a1adfSMatthias Sohn          <artifactId>tycho-packaging-plugin</artifactId>
235*2d0a1adfSMatthias Sohn          <version>${tycho-version}</version>
236*2d0a1adfSMatthias Sohn        </plugin>
237*2d0a1adfSMatthias Sohn        <plugin>
238b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho.extras</groupId>
239b97a35d7SMatthias Sohn          <artifactId>tycho-pack200a-plugin</artifactId>
240b97a35d7SMatthias Sohn          <version>${tycho-extras-version}</version>
241b97a35d7SMatthias Sohn        </plugin>
242b97a35d7SMatthias Sohn        <plugin>
243b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho.extras</groupId>
244b97a35d7SMatthias Sohn          <artifactId>tycho-pack200b-plugin</artifactId>
245b97a35d7SMatthias Sohn          <version>${tycho-extras-version}</version>
246b97a35d7SMatthias Sohn        </plugin>
247b97a35d7SMatthias Sohn        <plugin>
248b97a35d7SMatthias Sohn          <groupId>org.eclipse.cbi.maven.plugins</groupId>
249b97a35d7SMatthias Sohn          <artifactId>eclipse-jarsigner-plugin</artifactId>
250b92136f0SMatthias Sohn          <version>1.1.5</version>
251b97a35d7SMatthias Sohn        </plugin>
2528399a9bcSMatthias Sohn        <plugin>
2538399a9bcSMatthias Sohn          <groupId>org.codehaus.mojo</groupId>
2548399a9bcSMatthias Sohn          <artifactId>build-helper-maven-plugin</artifactId>
255b92136f0SMatthias Sohn          <version>3.0.0</version>
2568399a9bcSMatthias Sohn        </plugin>
257*2d0a1adfSMatthias Sohn        <plugin>
258*2d0a1adfSMatthias Sohn          <artifactId>maven-clean-plugin</artifactId>
259*2d0a1adfSMatthias Sohn          <version>3.1.0</version>
260*2d0a1adfSMatthias Sohn        </plugin>
261*2d0a1adfSMatthias Sohn        <plugin>
262*2d0a1adfSMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
263*2d0a1adfSMatthias Sohn          <artifactId>maven-deploy-plugin</artifactId>
264*2d0a1adfSMatthias Sohn          <version>3.0.0-M1</version>
265*2d0a1adfSMatthias Sohn        </plugin>
266*2d0a1adfSMatthias Sohn        <plugin>
267*2d0a1adfSMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
268*2d0a1adfSMatthias Sohn          <artifactId>maven-install-plugin</artifactId>
269*2d0a1adfSMatthias Sohn          <version>3.0.0-M1</version>
270*2d0a1adfSMatthias Sohn        </plugin>
271*2d0a1adfSMatthias Sohn        <plugin>
272*2d0a1adfSMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
273*2d0a1adfSMatthias Sohn          <artifactId>maven-site-plugin</artifactId>
274*2d0a1adfSMatthias Sohn          <version>3.7.1</version>
275*2d0a1adfSMatthias Sohn        </plugin>
276f2455798SMatthias Sohn      </plugins>
277f2455798SMatthias Sohn    </pluginManagement>
278f2455798SMatthias Sohn  </build>
279dcddaa94SMatthias Sohn
280b97a35d7SMatthias Sohn  <profiles>
281b97a35d7SMatthias Sohn    <profile>
282b97a35d7SMatthias Sohn      <id>eclipse-sign</id>
283b97a35d7SMatthias Sohn      <build>
284b97a35d7SMatthias Sohn        <plugins>
285b97a35d7SMatthias Sohn          <plugin>
286b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
287b97a35d7SMatthias Sohn            <artifactId>target-platform-configuration</artifactId>
288b97a35d7SMatthias Sohn            <configuration>
289b97a35d7SMatthias Sohn              <includePackedArtifacts>true</includePackedArtifacts>
290b97a35d7SMatthias Sohn            </configuration>
291b97a35d7SMatthias Sohn          </plugin>
292b97a35d7SMatthias Sohn          <plugin>
293b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
294b97a35d7SMatthias Sohn            <artifactId>tycho-pack200a-plugin</artifactId>
295b97a35d7SMatthias Sohn            <executions>
296b97a35d7SMatthias Sohn              <execution>
297b97a35d7SMatthias Sohn                <id>pack200-normalize</id>
298b97a35d7SMatthias Sohn                <goals>
299b97a35d7SMatthias Sohn                  <goal>normalize</goal>
300b97a35d7SMatthias Sohn                </goals>
301b97a35d7SMatthias Sohn                <phase>verify</phase>
302b97a35d7SMatthias Sohn              </execution>
303b97a35d7SMatthias Sohn            </executions>
304b97a35d7SMatthias Sohn          </plugin>
305b97a35d7SMatthias Sohn          <plugin>
306b97a35d7SMatthias Sohn            <groupId>org.eclipse.cbi.maven.plugins</groupId>
307b97a35d7SMatthias Sohn            <artifactId>eclipse-jarsigner-plugin</artifactId>
308b97a35d7SMatthias Sohn            <executions>
309b97a35d7SMatthias Sohn              <execution>
310b97a35d7SMatthias Sohn                <id>sign</id>
311b97a35d7SMatthias Sohn                <goals>
312b97a35d7SMatthias Sohn                  <goal>sign</goal>
313b97a35d7SMatthias Sohn                </goals>
314b97a35d7SMatthias Sohn                <phase>verify</phase>
315b97a35d7SMatthias Sohn              </execution>
316b97a35d7SMatthias Sohn            </executions>
317b97a35d7SMatthias Sohn          </plugin>
318b97a35d7SMatthias Sohn          <plugin>
319b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
320b97a35d7SMatthias Sohn            <artifactId>tycho-pack200b-plugin</artifactId>
321b97a35d7SMatthias Sohn            <executions>
322b97a35d7SMatthias Sohn              <execution>
323b97a35d7SMatthias Sohn                <id>pack200-pack</id>
324b97a35d7SMatthias Sohn                <goals>
325b97a35d7SMatthias Sohn                  <goal>pack</goal>
326b97a35d7SMatthias Sohn                </goals>
327b97a35d7SMatthias Sohn                <phase>verify</phase>
328b97a35d7SMatthias Sohn              </execution>
329b97a35d7SMatthias Sohn            </executions>
330b97a35d7SMatthias Sohn          </plugin>
331b97a35d7SMatthias Sohn          <plugin>
332b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
333b97a35d7SMatthias Sohn            <artifactId>tycho-p2-plugin</artifactId>
334b97a35d7SMatthias Sohn            <executions>
335b97a35d7SMatthias Sohn              <execution>
336b97a35d7SMatthias Sohn                <id>p2-metadata</id>
337b97a35d7SMatthias Sohn                <goals>
338b97a35d7SMatthias Sohn                  <goal>p2-metadata</goal>
339b97a35d7SMatthias Sohn                </goals>
340b97a35d7SMatthias Sohn                <phase>verify</phase>
341b97a35d7SMatthias Sohn              </execution>
342b97a35d7SMatthias Sohn            </executions>
343b97a35d7SMatthias Sohn            <configuration>
344b97a35d7SMatthias Sohn              <defaultP2Metadata>false</defaultP2Metadata>
345b97a35d7SMatthias Sohn            </configuration>
346b97a35d7SMatthias Sohn          </plugin>
347b97a35d7SMatthias Sohn        </plugins>
348b97a35d7SMatthias Sohn      </build>
349b97a35d7SMatthias Sohn    </profile>
350b97a35d7SMatthias Sohn    <profile>
351b97a35d7SMatthias Sohn      <id>eclipse-pack</id>
352b97a35d7SMatthias Sohn      <build>
353b97a35d7SMatthias Sohn        <plugins>
354b97a35d7SMatthias Sohn          <plugin>
355b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
356b97a35d7SMatthias Sohn            <artifactId>target-platform-configuration</artifactId>
357b97a35d7SMatthias Sohn            <configuration>
358b97a35d7SMatthias Sohn              <includePackedArtifacts>true</includePackedArtifacts>
359b97a35d7SMatthias Sohn            </configuration>
360b97a35d7SMatthias Sohn          </plugin>
361b97a35d7SMatthias Sohn          <plugin>
362b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
363b97a35d7SMatthias Sohn            <artifactId>tycho-pack200a-plugin</artifactId>
364b97a35d7SMatthias Sohn            <executions>
365b97a35d7SMatthias Sohn              <execution>
366b97a35d7SMatthias Sohn                <id>pack200-normalize</id>
367b97a35d7SMatthias Sohn                <goals>
368b97a35d7SMatthias Sohn                  <goal>normalize</goal>
369b97a35d7SMatthias Sohn                </goals>
370b97a35d7SMatthias Sohn              </execution>
371b97a35d7SMatthias Sohn            </executions>
372b97a35d7SMatthias Sohn          </plugin>
373b97a35d7SMatthias Sohn          <plugin>
374b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
375b97a35d7SMatthias Sohn            <artifactId>tycho-pack200b-plugin</artifactId>
376b97a35d7SMatthias Sohn            <executions>
377b97a35d7SMatthias Sohn              <execution>
378b97a35d7SMatthias Sohn                <id>pack200-pack</id>
379b97a35d7SMatthias Sohn                <goals>
380b97a35d7SMatthias Sohn                  <goal>pack</goal>
381b97a35d7SMatthias Sohn                </goals>
382b97a35d7SMatthias Sohn              </execution>
383b97a35d7SMatthias Sohn            </executions>
384b97a35d7SMatthias Sohn          </plugin>
385b97a35d7SMatthias Sohn          <plugin>
386b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
387b97a35d7SMatthias Sohn            <artifactId>tycho-p2-plugin</artifactId>
388b97a35d7SMatthias Sohn            <executions>
389b97a35d7SMatthias Sohn              <execution>
390b97a35d7SMatthias Sohn                <id>p2-metadata</id>
391b97a35d7SMatthias Sohn                <goals>
392b97a35d7SMatthias Sohn                  <goal>p2-metadata</goal>
393b97a35d7SMatthias Sohn                </goals>
394b97a35d7SMatthias Sohn                <phase>package</phase>
395b97a35d7SMatthias Sohn              </execution>
396b97a35d7SMatthias Sohn            </executions>
397b97a35d7SMatthias Sohn            <configuration>
398b97a35d7SMatthias Sohn              <defaultP2Metadata>false</defaultP2Metadata>
399b97a35d7SMatthias Sohn            </configuration>
400b97a35d7SMatthias Sohn          </plugin>
401b97a35d7SMatthias Sohn        </plugins>
402b97a35d7SMatthias Sohn      </build>
403b97a35d7SMatthias Sohn    </profile>
404b97a35d7SMatthias Sohn  </profiles>
405f2455798SMatthias Sohn</project>
406