xref: /JGit/org.eclipse.jgit.packaging/pom.xml (revision 6fcd95cfedc1c06ee8b7d1a753a27237f7439c3f)
1f2455798SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
2f2455798SMatthias Sohn<!--
35c5f7c6bSMatthias Sohn  Copyright (C) 2009, 2015, Matthias Sohn <matthias.sohn@sap.com> and others
4f2455798SMatthias Sohn
55c5f7c6bSMatthias Sohn  This program and the accompanying materials are made available under the
65c5f7c6bSMatthias Sohn  terms of the Eclipse Distribution License v. 1.0 which is available at
75c5f7c6bSMatthias Sohn  http://www.eclipse.org/org/documents/edl-v10.php.
8f2455798SMatthias Sohn
95c5f7c6bSMatthias Sohn  SPDX-License-Identifier: BSD-3-Clause
10f2455798SMatthias Sohn-->
11f2455798SMatthias Sohn
12f2455798SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
13f2455798SMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14f2455798SMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15f2455798SMatthias Sohn  <modelVersion>4.0.0</modelVersion>
16f2455798SMatthias Sohn
17f2455798SMatthias Sohn  <groupId>org.eclipse.jgit</groupId>
18f2455798SMatthias Sohn  <artifactId>jgit.tycho.parent</artifactId>
198fab712fSMatthias Sohn  <version>5.8.0-SNAPSHOT</version>
20f2455798SMatthias Sohn  <packaging>pom</packaging>
21f2455798SMatthias Sohn
22f5f1536fSMatthias Sohn  <name>JGit Tycho Parent</name>
23f2455798SMatthias Sohn
24f2455798SMatthias Sohn  <properties>
25*6fcd95cfSMichael Keppler    <tycho-version>1.7.0</tycho-version>
267948903aSMatthias Sohn    <tycho-extras-version>${tycho-version}</tycho-extras-version>
27e8705a6eSMatthias Sohn    <target-platform>jgit-4.6</target-platform>
28f2455798SMatthias Sohn  </properties>
29f2455798SMatthias Sohn
30b97a35d7SMatthias Sohn  <pluginRepositories>
31b97a35d7SMatthias Sohn    <pluginRepository>
32b97a35d7SMatthias Sohn      <id>repo.eclipse.org.cbi-releases</id>
33b97a35d7SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
34b97a35d7SMatthias Sohn    </pluginRepository>
354f9bdc8bSMatthias Sohn    <pluginRepository>
364f9bdc8bSMatthias Sohn      <id>repo.eclipse.org.cbi-snapshots</id>
374f9bdc8bSMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/cbi-snapshots/</url>
384f9bdc8bSMatthias Sohn    </pluginRepository>
39b97a35d7SMatthias Sohn  </pluginRepositories>
40b97a35d7SMatthias Sohn
41f2455798SMatthias Sohn  <modules>
4277d2f3caSMatthias Sohn    <module>org.eclipse.jgit.target</module>
43f2455798SMatthias Sohn    <module>org.eclipse.jgit.feature</module>
443d3df394SMatthias Sohn    <module>org.eclipse.jgit.http.apache.feature</module>
459b31969fSThomas Wolf    <module>org.eclipse.jgit.ssh.apache.feature</module>
46536db18cSMatthias Sohn    <module>org.eclipse.jgit.lfs.feature</module>
474974090dSMatthias Sohn    <module>org.eclipse.jgit.pgm.feature</module>
4851f6fbdaSMatthias Sohn    <module>org.eclipse.jgit.source.feature</module>
49e36c2aa8SMatthias Sohn    <module>org.eclipse.jgit.junit.feature</module>
5043543e79SMatthias Sohn    <module>org.eclipse.jgit.repository</module>
51f2455798SMatthias Sohn  </modules>
52f2455798SMatthias Sohn
53af64b9a3SMatthias Sohn  <distributionManagement>
54af64b9a3SMatthias Sohn    <repository>
55af64b9a3SMatthias Sohn      <id>repo.eclipse.org</id>
56af64b9a3SMatthias Sohn      <name>JGit Maven Repository - Releases</name>
57af64b9a3SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/jgit-releases/</url>
58af64b9a3SMatthias Sohn    </repository>
59af64b9a3SMatthias Sohn    <snapshotRepository>
60af64b9a3SMatthias Sohn      <id>repo.eclipse.org</id>
61af64b9a3SMatthias Sohn      <name>JGit Maven Repository - Snapshots</name>
62af64b9a3SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/jgit-snapshots/</url>
63af64b9a3SMatthias Sohn      <uniqueVersion>true</uniqueVersion>
64af64b9a3SMatthias Sohn    </snapshotRepository>
65af64b9a3SMatthias Sohn  </distributionManagement>
66af64b9a3SMatthias Sohn
6751f6fbdaSMatthias Sohn  <dependencies>
6851f6fbdaSMatthias Sohn    <!-- sources artifacts so that we can place them in the features -->
6951f6fbdaSMatthias Sohn    <dependency>
7051f6fbdaSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
7151f6fbdaSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
7277d2f3caSMatthias Sohn      <version>${project.version}</version>
7351f6fbdaSMatthias Sohn      <classifier>sources</classifier>
7451f6fbdaSMatthias Sohn    </dependency>
754974090dSMatthias Sohn    <dependency>
764974090dSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
7727f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.ant</artifactId>
7827f1fb66SMatthias Sohn      <version>${project.version}</version>
7927f1fb66SMatthias Sohn      <classifier>sources</classifier>
8027f1fb66SMatthias Sohn    </dependency>
8127f1fb66SMatthias Sohn    <dependency>
8227f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
8327f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.archive</artifactId>
8427f1fb66SMatthias Sohn      <version>${project.version}</version>
8527f1fb66SMatthias Sohn      <classifier>sources</classifier>
8627f1fb66SMatthias Sohn    </dependency>
8727f1fb66SMatthias Sohn    <dependency>
8827f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
8927f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.http.apache</artifactId>
9027f1fb66SMatthias Sohn      <version>${project.version}</version>
9127f1fb66SMatthias Sohn      <classifier>sources</classifier>
9227f1fb66SMatthias Sohn    </dependency>
9327f1fb66SMatthias Sohn    <dependency>
9427f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
9527f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.http.server</artifactId>
9627f1fb66SMatthias Sohn      <version>${project.version}</version>
9727f1fb66SMatthias Sohn      <classifier>sources</classifier>
9827f1fb66SMatthias Sohn    </dependency>
9927f1fb66SMatthias Sohn    <dependency>
10027f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
10127f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.junit</artifactId>
10227f1fb66SMatthias Sohn      <version>${project.version}</version>
10327f1fb66SMatthias Sohn      <classifier>sources</classifier>
10427f1fb66SMatthias Sohn    </dependency>
10527f1fb66SMatthias Sohn    <dependency>
10627f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
10727f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.junit.http</artifactId>
10827f1fb66SMatthias Sohn      <version>${project.version}</version>
10927f1fb66SMatthias Sohn      <classifier>sources</classifier>
11027f1fb66SMatthias Sohn    </dependency>
11127f1fb66SMatthias Sohn    <dependency>
11227f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
11327f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.junit.ssh</artifactId>
11427f1fb66SMatthias Sohn      <version>${project.version}</version>
11527f1fb66SMatthias Sohn      <classifier>sources</classifier>
11627f1fb66SMatthias Sohn    </dependency>
11727f1fb66SMatthias Sohn    <dependency>
11827f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
11927f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.lfs</artifactId>
12027f1fb66SMatthias Sohn      <version>${project.version}</version>
12127f1fb66SMatthias Sohn      <classifier>sources</classifier>
12227f1fb66SMatthias Sohn    </dependency>
12327f1fb66SMatthias Sohn    <dependency>
12427f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
12527f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.lfs.server</artifactId>
12627f1fb66SMatthias Sohn      <version>${project.version}</version>
12727f1fb66SMatthias Sohn      <classifier>sources</classifier>
12827f1fb66SMatthias Sohn    </dependency>
12927f1fb66SMatthias Sohn    <dependency>
13027f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
1314974090dSMatthias Sohn      <artifactId>org.eclipse.jgit.pgm</artifactId>
1324974090dSMatthias Sohn      <version>${project.version}</version>
1334974090dSMatthias Sohn      <classifier>sources</classifier>
1344974090dSMatthias Sohn    </dependency>
1359b31969fSThomas Wolf    <dependency>
1369b31969fSThomas Wolf      <groupId>org.eclipse.jgit</groupId>
1379b31969fSThomas Wolf      <artifactId>org.eclipse.jgit.ssh.apache</artifactId>
1389b31969fSThomas Wolf      <version>${project.version}</version>
1399b31969fSThomas Wolf      <classifier>sources</classifier>
1409b31969fSThomas Wolf    </dependency>
14127f1fb66SMatthias Sohn    <dependency>
14227f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
14327f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.ui</artifactId>
14427f1fb66SMatthias Sohn      <version>${project.version}</version>
14527f1fb66SMatthias Sohn      <classifier>sources</classifier>
14627f1fb66SMatthias Sohn    </dependency>
14751f6fbdaSMatthias Sohn  </dependencies>
14851f6fbdaSMatthias Sohn
149f2455798SMatthias Sohn  <build>
150f2455798SMatthias Sohn    <plugins>
151f2455798SMatthias Sohn      <plugin>
15265848638SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
15365848638SMatthias Sohn        <artifactId>maven-enforcer-plugin</artifactId>
15465848638SMatthias Sohn        <version>3.0.0-M1</version>
15565848638SMatthias Sohn        <executions>
15665848638SMatthias Sohn          <execution>
15765848638SMatthias Sohn            <id>enforce-maven</id>
15865848638SMatthias Sohn            <goals>
15965848638SMatthias Sohn              <goal>enforce</goal>
16065848638SMatthias Sohn            </goals>
16165848638SMatthias Sohn            <configuration>
16265848638SMatthias Sohn              <rules>
16365848638SMatthias Sohn                <requireMavenVersion>
16465848638SMatthias Sohn                  <version>3.5.2</version>
16565848638SMatthias Sohn                </requireMavenVersion>
16665848638SMatthias Sohn              </rules>
16765848638SMatthias Sohn            </configuration>
16865848638SMatthias Sohn          </execution>
16965848638SMatthias Sohn        </executions>
17065848638SMatthias Sohn      </plugin>
17165848638SMatthias Sohn      <plugin>
1724e7c2f80SChris Aniszczyk        <groupId>org.eclipse.tycho</groupId>
173f2455798SMatthias Sohn        <artifactId>tycho-maven-plugin</artifactId>
174f2455798SMatthias Sohn        <version>${tycho-version}</version>
175f2455798SMatthias Sohn        <extensions>true</extensions>
176f2455798SMatthias Sohn      </plugin>
177f2455798SMatthias Sohn      <plugin>
1784e7c2f80SChris Aniszczyk        <groupId>org.eclipse.tycho</groupId>
179f2455798SMatthias Sohn        <artifactId>target-platform-configuration</artifactId>
180f2455798SMatthias Sohn        <version>${tycho-version}</version>
181f2455798SMatthias Sohn        <configuration>
182f2455798SMatthias Sohn          <resolver>p2</resolver>
183f2455798SMatthias Sohn        </configuration>
184f2455798SMatthias Sohn      </plugin>
185f2455798SMatthias Sohn    </plugins>
186f2455798SMatthias Sohn    <pluginManagement>
187f2455798SMatthias Sohn      <plugins>
188f2455798SMatthias Sohn        <plugin>
1894e7c2f80SChris Aniszczyk          <groupId>org.eclipse.tycho</groupId>
1904e7c2f80SChris Aniszczyk          <artifactId>tycho-compiler-plugin</artifactId>
191f2455798SMatthias Sohn          <version>${tycho-version}</version>
192f2455798SMatthias Sohn          <configuration>
193f2455798SMatthias Sohn            <encoding>UTF-8</encoding>
194ab79ce91SMatthias Sohn            <source>1.8</source>
195ab79ce91SMatthias Sohn            <target>1.8</target>
196f2455798SMatthias Sohn          </configuration>
197f2455798SMatthias Sohn        </plugin>
198f2455798SMatthias Sohn        <plugin>
199f2455798SMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
200f2455798SMatthias Sohn          <artifactId>maven-resources-plugin</artifactId>
201b92136f0SMatthias Sohn          <version>3.1.0</version>
202f2455798SMatthias Sohn          <configuration>
203f2455798SMatthias Sohn            <encoding>ISO-8859-1</encoding>
204f2455798SMatthias Sohn          </configuration>
205f2455798SMatthias Sohn        </plugin>
206f2455798SMatthias Sohn        <plugin>
2074e7c2f80SChris Aniszczyk          <groupId>org.eclipse.tycho</groupId>
208f2455798SMatthias Sohn          <artifactId>target-platform-configuration</artifactId>
209f2455798SMatthias Sohn          <version>${tycho-version}</version>
210f2455798SMatthias Sohn          <configuration>
211f2455798SMatthias Sohn            <resolver>p2</resolver>
212f2455798SMatthias Sohn            <pomDependencies>consider</pomDependencies>
21377d2f3caSMatthias Sohn            <target>
21477d2f3caSMatthias Sohn              <artifact>
21577d2f3caSMatthias Sohn                <groupId>org.eclipse.jgit</groupId>
21677d2f3caSMatthias Sohn                <artifactId>org.eclipse.jgit.target</artifactId>
21777d2f3caSMatthias Sohn                <version>${project.version}</version>
2188399a9bcSMatthias Sohn                <classifier>${target-platform}</classifier>
21977d2f3caSMatthias Sohn              </artifact>
22077d2f3caSMatthias Sohn            </target>
22144274434SMatthias Sohn            <environments>
22244274434SMatthias Sohn              <environment>
22344274434SMatthias Sohn                <os>linux</os>
22444274434SMatthias Sohn                <ws>gtk</ws>
22544274434SMatthias Sohn                <arch>x86</arch>
22644274434SMatthias Sohn              </environment>
22744274434SMatthias Sohn              <environment>
22844274434SMatthias Sohn                <os>linux</os>
22944274434SMatthias Sohn                <ws>gtk</ws>
23044274434SMatthias Sohn                <arch>x86_64</arch>
23144274434SMatthias Sohn              </environment>
23244274434SMatthias Sohn              <environment>
23344274434SMatthias Sohn                <os>win32</os>
23444274434SMatthias Sohn                <ws>win32</ws>
23544274434SMatthias Sohn                <arch>x86</arch>
23644274434SMatthias Sohn              </environment>
23744274434SMatthias Sohn              <environment>
23844274434SMatthias Sohn                <os>win32</os>
23944274434SMatthias Sohn                <ws>win32</ws>
24044274434SMatthias Sohn                <arch>x86_64</arch>
24144274434SMatthias Sohn              </environment>
24244274434SMatthias Sohn              <environment>
24344274434SMatthias Sohn                <os>macosx</os>
24444274434SMatthias Sohn                <ws>cocoa</ws>
24544274434SMatthias Sohn                <arch>x86_64</arch>
24644274434SMatthias Sohn              </environment>
24744274434SMatthias Sohn            </environments>
248f2455798SMatthias Sohn          </configuration>
249f2455798SMatthias Sohn        </plugin>
250b97a35d7SMatthias Sohn        <plugin>
251b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
252b97a35d7SMatthias Sohn          <artifactId>tycho-p2-plugin</artifactId>
253b97a35d7SMatthias Sohn          <version>${tycho-version}</version>
254b97a35d7SMatthias Sohn        </plugin>
255b97a35d7SMatthias Sohn        <plugin>
2562d0a1adfSMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
2572d0a1adfSMatthias Sohn          <artifactId>tycho-p2-publisher-plugin</artifactId>
2582d0a1adfSMatthias Sohn          <version>${tycho-version}</version>
2592d0a1adfSMatthias Sohn        </plugin>
2602d0a1adfSMatthias Sohn        <plugin>
2612d0a1adfSMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
2622d0a1adfSMatthias Sohn          <artifactId>tycho-p2-repository-plugin</artifactId>
2632d0a1adfSMatthias Sohn          <version>${tycho-version}</version>
2642d0a1adfSMatthias Sohn        </plugin>
2652d0a1adfSMatthias Sohn        <plugin>
2662d0a1adfSMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
2672d0a1adfSMatthias Sohn          <artifactId>tycho-packaging-plugin</artifactId>
2682d0a1adfSMatthias Sohn          <version>${tycho-version}</version>
2692d0a1adfSMatthias Sohn        </plugin>
2702d0a1adfSMatthias Sohn        <plugin>
271b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho.extras</groupId>
272b97a35d7SMatthias Sohn          <artifactId>tycho-pack200a-plugin</artifactId>
273b97a35d7SMatthias Sohn          <version>${tycho-extras-version}</version>
274b97a35d7SMatthias Sohn        </plugin>
275b97a35d7SMatthias Sohn        <plugin>
276b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho.extras</groupId>
277b97a35d7SMatthias Sohn          <artifactId>tycho-pack200b-plugin</artifactId>
278b97a35d7SMatthias Sohn          <version>${tycho-extras-version}</version>
279b97a35d7SMatthias Sohn        </plugin>
280b97a35d7SMatthias Sohn        <plugin>
281b97a35d7SMatthias Sohn          <groupId>org.eclipse.cbi.maven.plugins</groupId>
282b97a35d7SMatthias Sohn          <artifactId>eclipse-jarsigner-plugin</artifactId>
283b92136f0SMatthias Sohn          <version>1.1.5</version>
284b97a35d7SMatthias Sohn        </plugin>
2858399a9bcSMatthias Sohn        <plugin>
2868399a9bcSMatthias Sohn          <groupId>org.codehaus.mojo</groupId>
2878399a9bcSMatthias Sohn          <artifactId>build-helper-maven-plugin</artifactId>
288b92136f0SMatthias Sohn          <version>3.0.0</version>
2898399a9bcSMatthias Sohn        </plugin>
2902d0a1adfSMatthias Sohn        <plugin>
2912d0a1adfSMatthias Sohn          <artifactId>maven-clean-plugin</artifactId>
2922d0a1adfSMatthias Sohn          <version>3.1.0</version>
2932d0a1adfSMatthias Sohn        </plugin>
2942d0a1adfSMatthias Sohn        <plugin>
2952d0a1adfSMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
2962d0a1adfSMatthias Sohn          <artifactId>maven-deploy-plugin</artifactId>
2972d0a1adfSMatthias Sohn          <version>3.0.0-M1</version>
2982d0a1adfSMatthias Sohn        </plugin>
2992d0a1adfSMatthias Sohn        <plugin>
3002d0a1adfSMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
3012d0a1adfSMatthias Sohn          <artifactId>maven-install-plugin</artifactId>
3022d0a1adfSMatthias Sohn          <version>3.0.0-M1</version>
3032d0a1adfSMatthias Sohn        </plugin>
3042d0a1adfSMatthias Sohn        <plugin>
3052d0a1adfSMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
3062d0a1adfSMatthias Sohn          <artifactId>maven-site-plugin</artifactId>
3078669d6dfSMatthias Sohn          <version>3.8.2</version>
3082d0a1adfSMatthias Sohn        </plugin>
309f2455798SMatthias Sohn      </plugins>
310f2455798SMatthias Sohn    </pluginManagement>
311f2455798SMatthias Sohn  </build>
312dcddaa94SMatthias Sohn
313b97a35d7SMatthias Sohn  <profiles>
314b97a35d7SMatthias Sohn    <profile>
315b97a35d7SMatthias Sohn      <id>eclipse-sign</id>
316b97a35d7SMatthias Sohn      <build>
317b97a35d7SMatthias Sohn        <plugins>
318b97a35d7SMatthias Sohn          <plugin>
319b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
320b97a35d7SMatthias Sohn            <artifactId>target-platform-configuration</artifactId>
321b97a35d7SMatthias Sohn            <configuration>
322b97a35d7SMatthias Sohn              <includePackedArtifacts>true</includePackedArtifacts>
323b97a35d7SMatthias Sohn            </configuration>
324b97a35d7SMatthias Sohn          </plugin>
325b97a35d7SMatthias Sohn          <plugin>
326b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
327b97a35d7SMatthias Sohn            <artifactId>tycho-pack200a-plugin</artifactId>
328b97a35d7SMatthias Sohn            <executions>
329b97a35d7SMatthias Sohn              <execution>
330b97a35d7SMatthias Sohn                <id>pack200-normalize</id>
331b97a35d7SMatthias Sohn                <goals>
332b97a35d7SMatthias Sohn                  <goal>normalize</goal>
333b97a35d7SMatthias Sohn                </goals>
334b97a35d7SMatthias Sohn                <phase>verify</phase>
335b97a35d7SMatthias Sohn              </execution>
336b97a35d7SMatthias Sohn            </executions>
337b97a35d7SMatthias Sohn          </plugin>
338b97a35d7SMatthias Sohn          <plugin>
339b97a35d7SMatthias Sohn            <groupId>org.eclipse.cbi.maven.plugins</groupId>
340b97a35d7SMatthias Sohn            <artifactId>eclipse-jarsigner-plugin</artifactId>
341b97a35d7SMatthias Sohn            <executions>
342b97a35d7SMatthias Sohn              <execution>
343b97a35d7SMatthias Sohn                <id>sign</id>
344b97a35d7SMatthias Sohn                <goals>
345b97a35d7SMatthias Sohn                  <goal>sign</goal>
346b97a35d7SMatthias Sohn                </goals>
347b97a35d7SMatthias Sohn                <phase>verify</phase>
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                <phase>verify</phase>
361b97a35d7SMatthias Sohn              </execution>
362b97a35d7SMatthias Sohn            </executions>
363b97a35d7SMatthias Sohn          </plugin>
364b97a35d7SMatthias Sohn          <plugin>
365b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
366b97a35d7SMatthias Sohn            <artifactId>tycho-p2-plugin</artifactId>
367b97a35d7SMatthias Sohn            <executions>
368b97a35d7SMatthias Sohn              <execution>
369b97a35d7SMatthias Sohn                <id>p2-metadata</id>
370b97a35d7SMatthias Sohn                <goals>
371b97a35d7SMatthias Sohn                  <goal>p2-metadata</goal>
372b97a35d7SMatthias Sohn                </goals>
373b97a35d7SMatthias Sohn                <phase>verify</phase>
374b97a35d7SMatthias Sohn              </execution>
375b97a35d7SMatthias Sohn            </executions>
376b97a35d7SMatthias Sohn            <configuration>
377b97a35d7SMatthias Sohn              <defaultP2Metadata>false</defaultP2Metadata>
378b97a35d7SMatthias Sohn            </configuration>
379b97a35d7SMatthias Sohn          </plugin>
380b97a35d7SMatthias Sohn        </plugins>
381b97a35d7SMatthias Sohn      </build>
382b97a35d7SMatthias Sohn    </profile>
383b97a35d7SMatthias Sohn    <profile>
384b97a35d7SMatthias Sohn      <id>eclipse-pack</id>
385b97a35d7SMatthias Sohn      <build>
386b97a35d7SMatthias Sohn        <plugins>
387b97a35d7SMatthias Sohn          <plugin>
388b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
389b97a35d7SMatthias Sohn            <artifactId>target-platform-configuration</artifactId>
390b97a35d7SMatthias Sohn            <configuration>
391b97a35d7SMatthias Sohn              <includePackedArtifacts>true</includePackedArtifacts>
392b97a35d7SMatthias Sohn            </configuration>
393b97a35d7SMatthias Sohn          </plugin>
394b97a35d7SMatthias Sohn          <plugin>
395b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
396b97a35d7SMatthias Sohn            <artifactId>tycho-pack200a-plugin</artifactId>
397b97a35d7SMatthias Sohn            <executions>
398b97a35d7SMatthias Sohn              <execution>
399b97a35d7SMatthias Sohn                <id>pack200-normalize</id>
400b97a35d7SMatthias Sohn                <goals>
401b97a35d7SMatthias Sohn                  <goal>normalize</goal>
402b97a35d7SMatthias Sohn                </goals>
403b97a35d7SMatthias Sohn              </execution>
404b97a35d7SMatthias Sohn            </executions>
405b97a35d7SMatthias Sohn          </plugin>
406b97a35d7SMatthias Sohn          <plugin>
407b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
408b97a35d7SMatthias Sohn            <artifactId>tycho-pack200b-plugin</artifactId>
409b97a35d7SMatthias Sohn            <executions>
410b97a35d7SMatthias Sohn              <execution>
411b97a35d7SMatthias Sohn                <id>pack200-pack</id>
412b97a35d7SMatthias Sohn                <goals>
413b97a35d7SMatthias Sohn                  <goal>pack</goal>
414b97a35d7SMatthias Sohn                </goals>
415b97a35d7SMatthias Sohn              </execution>
416b97a35d7SMatthias Sohn            </executions>
417b97a35d7SMatthias Sohn          </plugin>
418b97a35d7SMatthias Sohn          <plugin>
419b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
420b97a35d7SMatthias Sohn            <artifactId>tycho-p2-plugin</artifactId>
421b97a35d7SMatthias Sohn            <executions>
422b97a35d7SMatthias Sohn              <execution>
423b97a35d7SMatthias Sohn                <id>p2-metadata</id>
424b97a35d7SMatthias Sohn                <goals>
425b97a35d7SMatthias Sohn                  <goal>p2-metadata</goal>
426b97a35d7SMatthias Sohn                </goals>
427b97a35d7SMatthias Sohn                <phase>package</phase>
428b97a35d7SMatthias Sohn              </execution>
429b97a35d7SMatthias Sohn            </executions>
430b97a35d7SMatthias Sohn            <configuration>
431b97a35d7SMatthias Sohn              <defaultP2Metadata>false</defaultP2Metadata>
432b97a35d7SMatthias Sohn            </configuration>
433b97a35d7SMatthias Sohn          </plugin>
434b97a35d7SMatthias Sohn        </plugins>
435b97a35d7SMatthias Sohn      </build>
436b97a35d7SMatthias Sohn    </profile>
437b97a35d7SMatthias Sohn  </profiles>
438f2455798SMatthias Sohn</project>
439