xref: /JGit/org.eclipse.jgit.packaging/pom.xml (revision 77848d635b76d8294697ffaf11acf51256df2a5b)
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>
256fcd95cfSMichael 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>
44*77848d63SMatthias Sohn    <module>org.eclipse.jgit.gpg.bc.feature</module>
453d3df394SMatthias Sohn    <module>org.eclipse.jgit.http.apache.feature</module>
469b31969fSThomas Wolf    <module>org.eclipse.jgit.ssh.apache.feature</module>
47536db18cSMatthias Sohn    <module>org.eclipse.jgit.lfs.feature</module>
484974090dSMatthias Sohn    <module>org.eclipse.jgit.pgm.feature</module>
4951f6fbdaSMatthias Sohn    <module>org.eclipse.jgit.source.feature</module>
50e36c2aa8SMatthias Sohn    <module>org.eclipse.jgit.junit.feature</module>
5143543e79SMatthias Sohn    <module>org.eclipse.jgit.repository</module>
52f2455798SMatthias Sohn  </modules>
53f2455798SMatthias Sohn
54af64b9a3SMatthias Sohn  <distributionManagement>
55af64b9a3SMatthias Sohn    <repository>
56af64b9a3SMatthias Sohn      <id>repo.eclipse.org</id>
57af64b9a3SMatthias Sohn      <name>JGit Maven Repository - Releases</name>
58af64b9a3SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/jgit-releases/</url>
59af64b9a3SMatthias Sohn    </repository>
60af64b9a3SMatthias Sohn    <snapshotRepository>
61af64b9a3SMatthias Sohn      <id>repo.eclipse.org</id>
62af64b9a3SMatthias Sohn      <name>JGit Maven Repository - Snapshots</name>
63af64b9a3SMatthias Sohn      <url>https://repo.eclipse.org/content/repositories/jgit-snapshots/</url>
64af64b9a3SMatthias Sohn      <uniqueVersion>true</uniqueVersion>
65af64b9a3SMatthias Sohn    </snapshotRepository>
66af64b9a3SMatthias Sohn  </distributionManagement>
67af64b9a3SMatthias Sohn
6851f6fbdaSMatthias Sohn  <dependencies>
6951f6fbdaSMatthias Sohn    <!-- sources artifacts so that we can place them in the features -->
7051f6fbdaSMatthias Sohn    <dependency>
7151f6fbdaSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
7251f6fbdaSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
7377d2f3caSMatthias Sohn      <version>${project.version}</version>
7451f6fbdaSMatthias Sohn      <classifier>sources</classifier>
7551f6fbdaSMatthias Sohn    </dependency>
764974090dSMatthias Sohn    <dependency>
774974090dSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
7827f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.ant</artifactId>
7927f1fb66SMatthias Sohn      <version>${project.version}</version>
8027f1fb66SMatthias Sohn      <classifier>sources</classifier>
8127f1fb66SMatthias Sohn    </dependency>
8227f1fb66SMatthias Sohn    <dependency>
8327f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
8427f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.archive</artifactId>
8527f1fb66SMatthias Sohn      <version>${project.version}</version>
8627f1fb66SMatthias Sohn      <classifier>sources</classifier>
8727f1fb66SMatthias Sohn    </dependency>
8827f1fb66SMatthias Sohn    <dependency>
8927f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
90*77848d63SMatthias Sohn      <artifactId>org.eclipse.jgit.gpg.bc</artifactId>
91*77848d63SMatthias Sohn      <version>${project.version}</version>
92*77848d63SMatthias Sohn      <classifier>sources</classifier>
93*77848d63SMatthias Sohn    </dependency>
94*77848d63SMatthias Sohn    <dependency>
95*77848d63SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
9627f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.http.apache</artifactId>
9727f1fb66SMatthias Sohn      <version>${project.version}</version>
9827f1fb66SMatthias Sohn      <classifier>sources</classifier>
9927f1fb66SMatthias Sohn    </dependency>
10027f1fb66SMatthias Sohn    <dependency>
10127f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
10227f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.http.server</artifactId>
10327f1fb66SMatthias Sohn      <version>${project.version}</version>
10427f1fb66SMatthias Sohn      <classifier>sources</classifier>
10527f1fb66SMatthias Sohn    </dependency>
10627f1fb66SMatthias Sohn    <dependency>
10727f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
10827f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.junit</artifactId>
10927f1fb66SMatthias Sohn      <version>${project.version}</version>
11027f1fb66SMatthias Sohn      <classifier>sources</classifier>
11127f1fb66SMatthias Sohn    </dependency>
11227f1fb66SMatthias Sohn    <dependency>
11327f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
11427f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.junit.http</artifactId>
11527f1fb66SMatthias Sohn      <version>${project.version}</version>
11627f1fb66SMatthias Sohn      <classifier>sources</classifier>
11727f1fb66SMatthias Sohn    </dependency>
11827f1fb66SMatthias Sohn    <dependency>
11927f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
12027f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.junit.ssh</artifactId>
12127f1fb66SMatthias Sohn      <version>${project.version}</version>
12227f1fb66SMatthias Sohn      <classifier>sources</classifier>
12327f1fb66SMatthias Sohn    </dependency>
12427f1fb66SMatthias Sohn    <dependency>
12527f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
12627f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.lfs</artifactId>
12727f1fb66SMatthias Sohn      <version>${project.version}</version>
12827f1fb66SMatthias Sohn      <classifier>sources</classifier>
12927f1fb66SMatthias Sohn    </dependency>
13027f1fb66SMatthias Sohn    <dependency>
13127f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
13227f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.lfs.server</artifactId>
13327f1fb66SMatthias Sohn      <version>${project.version}</version>
13427f1fb66SMatthias Sohn      <classifier>sources</classifier>
13527f1fb66SMatthias Sohn    </dependency>
13627f1fb66SMatthias Sohn    <dependency>
13727f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
1384974090dSMatthias Sohn      <artifactId>org.eclipse.jgit.pgm</artifactId>
1394974090dSMatthias Sohn      <version>${project.version}</version>
1404974090dSMatthias Sohn      <classifier>sources</classifier>
1414974090dSMatthias Sohn    </dependency>
1429b31969fSThomas Wolf    <dependency>
1439b31969fSThomas Wolf      <groupId>org.eclipse.jgit</groupId>
1449b31969fSThomas Wolf      <artifactId>org.eclipse.jgit.ssh.apache</artifactId>
1459b31969fSThomas Wolf      <version>${project.version}</version>
1469b31969fSThomas Wolf      <classifier>sources</classifier>
1479b31969fSThomas Wolf    </dependency>
14827f1fb66SMatthias Sohn    <dependency>
14927f1fb66SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
15027f1fb66SMatthias Sohn      <artifactId>org.eclipse.jgit.ui</artifactId>
15127f1fb66SMatthias Sohn      <version>${project.version}</version>
15227f1fb66SMatthias Sohn      <classifier>sources</classifier>
15327f1fb66SMatthias Sohn    </dependency>
15451f6fbdaSMatthias Sohn  </dependencies>
15551f6fbdaSMatthias Sohn
156f2455798SMatthias Sohn  <build>
157f2455798SMatthias Sohn    <plugins>
158f2455798SMatthias Sohn      <plugin>
15965848638SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
16065848638SMatthias Sohn        <artifactId>maven-enforcer-plugin</artifactId>
16165848638SMatthias Sohn        <version>3.0.0-M1</version>
16265848638SMatthias Sohn        <executions>
16365848638SMatthias Sohn          <execution>
16465848638SMatthias Sohn            <id>enforce-maven</id>
16565848638SMatthias Sohn            <goals>
16665848638SMatthias Sohn              <goal>enforce</goal>
16765848638SMatthias Sohn            </goals>
16865848638SMatthias Sohn            <configuration>
16965848638SMatthias Sohn              <rules>
17065848638SMatthias Sohn                <requireMavenVersion>
17165848638SMatthias Sohn                  <version>3.5.2</version>
17265848638SMatthias Sohn                </requireMavenVersion>
17365848638SMatthias Sohn              </rules>
17465848638SMatthias Sohn            </configuration>
17565848638SMatthias Sohn          </execution>
17665848638SMatthias Sohn        </executions>
17765848638SMatthias Sohn      </plugin>
17865848638SMatthias Sohn      <plugin>
1794e7c2f80SChris Aniszczyk        <groupId>org.eclipse.tycho</groupId>
180f2455798SMatthias Sohn        <artifactId>tycho-maven-plugin</artifactId>
181f2455798SMatthias Sohn        <version>${tycho-version}</version>
182f2455798SMatthias Sohn        <extensions>true</extensions>
183f2455798SMatthias Sohn      </plugin>
184f2455798SMatthias Sohn      <plugin>
1854e7c2f80SChris Aniszczyk        <groupId>org.eclipse.tycho</groupId>
186f2455798SMatthias Sohn        <artifactId>target-platform-configuration</artifactId>
187f2455798SMatthias Sohn        <version>${tycho-version}</version>
188f2455798SMatthias Sohn        <configuration>
189f2455798SMatthias Sohn          <resolver>p2</resolver>
190f2455798SMatthias Sohn        </configuration>
191f2455798SMatthias Sohn      </plugin>
192f2455798SMatthias Sohn    </plugins>
193f2455798SMatthias Sohn    <pluginManagement>
194f2455798SMatthias Sohn      <plugins>
195f2455798SMatthias Sohn        <plugin>
1964e7c2f80SChris Aniszczyk          <groupId>org.eclipse.tycho</groupId>
1974e7c2f80SChris Aniszczyk          <artifactId>tycho-compiler-plugin</artifactId>
198f2455798SMatthias Sohn          <version>${tycho-version}</version>
199f2455798SMatthias Sohn          <configuration>
200f2455798SMatthias Sohn            <encoding>UTF-8</encoding>
201ab79ce91SMatthias Sohn            <source>1.8</source>
202ab79ce91SMatthias Sohn            <target>1.8</target>
203f2455798SMatthias Sohn          </configuration>
204f2455798SMatthias Sohn        </plugin>
205f2455798SMatthias Sohn        <plugin>
206f2455798SMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
207f2455798SMatthias Sohn          <artifactId>maven-resources-plugin</artifactId>
208b92136f0SMatthias Sohn          <version>3.1.0</version>
209f2455798SMatthias Sohn          <configuration>
210f2455798SMatthias Sohn            <encoding>ISO-8859-1</encoding>
211f2455798SMatthias Sohn          </configuration>
212f2455798SMatthias Sohn        </plugin>
213f2455798SMatthias Sohn        <plugin>
2144e7c2f80SChris Aniszczyk          <groupId>org.eclipse.tycho</groupId>
215f2455798SMatthias Sohn          <artifactId>target-platform-configuration</artifactId>
216f2455798SMatthias Sohn          <version>${tycho-version}</version>
217f2455798SMatthias Sohn          <configuration>
218f2455798SMatthias Sohn            <resolver>p2</resolver>
219f2455798SMatthias Sohn            <pomDependencies>consider</pomDependencies>
22077d2f3caSMatthias Sohn            <target>
22177d2f3caSMatthias Sohn              <artifact>
22277d2f3caSMatthias Sohn                <groupId>org.eclipse.jgit</groupId>
22377d2f3caSMatthias Sohn                <artifactId>org.eclipse.jgit.target</artifactId>
22477d2f3caSMatthias Sohn                <version>${project.version}</version>
2258399a9bcSMatthias Sohn                <classifier>${target-platform}</classifier>
22677d2f3caSMatthias Sohn              </artifact>
22777d2f3caSMatthias Sohn            </target>
22844274434SMatthias Sohn            <environments>
22944274434SMatthias Sohn              <environment>
23044274434SMatthias Sohn                <os>linux</os>
23144274434SMatthias Sohn                <ws>gtk</ws>
23244274434SMatthias Sohn                <arch>x86</arch>
23344274434SMatthias Sohn              </environment>
23444274434SMatthias Sohn              <environment>
23544274434SMatthias Sohn                <os>linux</os>
23644274434SMatthias Sohn                <ws>gtk</ws>
23744274434SMatthias Sohn                <arch>x86_64</arch>
23844274434SMatthias Sohn              </environment>
23944274434SMatthias Sohn              <environment>
24044274434SMatthias Sohn                <os>win32</os>
24144274434SMatthias Sohn                <ws>win32</ws>
24244274434SMatthias Sohn                <arch>x86</arch>
24344274434SMatthias Sohn              </environment>
24444274434SMatthias Sohn              <environment>
24544274434SMatthias Sohn                <os>win32</os>
24644274434SMatthias Sohn                <ws>win32</ws>
24744274434SMatthias Sohn                <arch>x86_64</arch>
24844274434SMatthias Sohn              </environment>
24944274434SMatthias Sohn              <environment>
25044274434SMatthias Sohn                <os>macosx</os>
25144274434SMatthias Sohn                <ws>cocoa</ws>
25244274434SMatthias Sohn                <arch>x86_64</arch>
25344274434SMatthias Sohn              </environment>
25444274434SMatthias Sohn            </environments>
255f2455798SMatthias Sohn          </configuration>
256f2455798SMatthias Sohn        </plugin>
257b97a35d7SMatthias Sohn        <plugin>
258b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
259b97a35d7SMatthias Sohn          <artifactId>tycho-p2-plugin</artifactId>
260b97a35d7SMatthias Sohn          <version>${tycho-version}</version>
261b97a35d7SMatthias Sohn        </plugin>
262b97a35d7SMatthias Sohn        <plugin>
2632d0a1adfSMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
2642d0a1adfSMatthias Sohn          <artifactId>tycho-p2-publisher-plugin</artifactId>
2652d0a1adfSMatthias Sohn          <version>${tycho-version}</version>
2662d0a1adfSMatthias Sohn        </plugin>
2672d0a1adfSMatthias Sohn        <plugin>
2682d0a1adfSMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
2692d0a1adfSMatthias Sohn          <artifactId>tycho-p2-repository-plugin</artifactId>
2702d0a1adfSMatthias Sohn          <version>${tycho-version}</version>
2712d0a1adfSMatthias Sohn        </plugin>
2722d0a1adfSMatthias Sohn        <plugin>
2732d0a1adfSMatthias Sohn          <groupId>org.eclipse.tycho</groupId>
2742d0a1adfSMatthias Sohn          <artifactId>tycho-packaging-plugin</artifactId>
2752d0a1adfSMatthias Sohn          <version>${tycho-version}</version>
2762d0a1adfSMatthias Sohn        </plugin>
2772d0a1adfSMatthias Sohn        <plugin>
278b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho.extras</groupId>
279b97a35d7SMatthias Sohn          <artifactId>tycho-pack200a-plugin</artifactId>
280b97a35d7SMatthias Sohn          <version>${tycho-extras-version}</version>
281b97a35d7SMatthias Sohn        </plugin>
282b97a35d7SMatthias Sohn        <plugin>
283b97a35d7SMatthias Sohn          <groupId>org.eclipse.tycho.extras</groupId>
284b97a35d7SMatthias Sohn          <artifactId>tycho-pack200b-plugin</artifactId>
285b97a35d7SMatthias Sohn          <version>${tycho-extras-version}</version>
286b97a35d7SMatthias Sohn        </plugin>
287b97a35d7SMatthias Sohn        <plugin>
288b97a35d7SMatthias Sohn          <groupId>org.eclipse.cbi.maven.plugins</groupId>
289b97a35d7SMatthias Sohn          <artifactId>eclipse-jarsigner-plugin</artifactId>
290b92136f0SMatthias Sohn          <version>1.1.5</version>
291b97a35d7SMatthias Sohn        </plugin>
2928399a9bcSMatthias Sohn        <plugin>
2938399a9bcSMatthias Sohn          <groupId>org.codehaus.mojo</groupId>
2948399a9bcSMatthias Sohn          <artifactId>build-helper-maven-plugin</artifactId>
295b92136f0SMatthias Sohn          <version>3.0.0</version>
2968399a9bcSMatthias Sohn        </plugin>
2972d0a1adfSMatthias Sohn        <plugin>
2982d0a1adfSMatthias Sohn          <artifactId>maven-clean-plugin</artifactId>
2992d0a1adfSMatthias Sohn          <version>3.1.0</version>
3002d0a1adfSMatthias Sohn        </plugin>
3012d0a1adfSMatthias Sohn        <plugin>
3022d0a1adfSMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
3032d0a1adfSMatthias Sohn          <artifactId>maven-deploy-plugin</artifactId>
3042d0a1adfSMatthias Sohn          <version>3.0.0-M1</version>
3052d0a1adfSMatthias Sohn        </plugin>
3062d0a1adfSMatthias Sohn        <plugin>
3072d0a1adfSMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
3082d0a1adfSMatthias Sohn          <artifactId>maven-install-plugin</artifactId>
3092d0a1adfSMatthias Sohn          <version>3.0.0-M1</version>
3102d0a1adfSMatthias Sohn        </plugin>
3112d0a1adfSMatthias Sohn        <plugin>
3122d0a1adfSMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
3132d0a1adfSMatthias Sohn          <artifactId>maven-site-plugin</artifactId>
3148669d6dfSMatthias Sohn          <version>3.8.2</version>
3152d0a1adfSMatthias Sohn        </plugin>
316f2455798SMatthias Sohn      </plugins>
317f2455798SMatthias Sohn    </pluginManagement>
318f2455798SMatthias Sohn  </build>
319dcddaa94SMatthias Sohn
320b97a35d7SMatthias Sohn  <profiles>
321b97a35d7SMatthias Sohn    <profile>
322b97a35d7SMatthias Sohn      <id>eclipse-sign</id>
323b97a35d7SMatthias Sohn      <build>
324b97a35d7SMatthias Sohn        <plugins>
325b97a35d7SMatthias Sohn          <plugin>
326b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
327b97a35d7SMatthias Sohn            <artifactId>target-platform-configuration</artifactId>
328b97a35d7SMatthias Sohn            <configuration>
329b97a35d7SMatthias Sohn              <includePackedArtifacts>true</includePackedArtifacts>
330b97a35d7SMatthias Sohn            </configuration>
331b97a35d7SMatthias Sohn          </plugin>
332b97a35d7SMatthias Sohn          <plugin>
333b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
334b97a35d7SMatthias Sohn            <artifactId>tycho-pack200a-plugin</artifactId>
335b97a35d7SMatthias Sohn            <executions>
336b97a35d7SMatthias Sohn              <execution>
337b97a35d7SMatthias Sohn                <id>pack200-normalize</id>
338b97a35d7SMatthias Sohn                <goals>
339b97a35d7SMatthias Sohn                  <goal>normalize</goal>
340b97a35d7SMatthias Sohn                </goals>
341b97a35d7SMatthias Sohn                <phase>verify</phase>
342b97a35d7SMatthias Sohn              </execution>
343b97a35d7SMatthias Sohn            </executions>
344b97a35d7SMatthias Sohn          </plugin>
345b97a35d7SMatthias Sohn          <plugin>
346b97a35d7SMatthias Sohn            <groupId>org.eclipse.cbi.maven.plugins</groupId>
347b97a35d7SMatthias Sohn            <artifactId>eclipse-jarsigner-plugin</artifactId>
348b97a35d7SMatthias Sohn            <executions>
349b97a35d7SMatthias Sohn              <execution>
350b97a35d7SMatthias Sohn                <id>sign</id>
351b97a35d7SMatthias Sohn                <goals>
352b97a35d7SMatthias Sohn                  <goal>sign</goal>
353b97a35d7SMatthias Sohn                </goals>
354b97a35d7SMatthias Sohn                <phase>verify</phase>
355b97a35d7SMatthias Sohn              </execution>
356b97a35d7SMatthias Sohn            </executions>
357b97a35d7SMatthias Sohn          </plugin>
358b97a35d7SMatthias Sohn          <plugin>
359b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
360b97a35d7SMatthias Sohn            <artifactId>tycho-pack200b-plugin</artifactId>
361b97a35d7SMatthias Sohn            <executions>
362b97a35d7SMatthias Sohn              <execution>
363b97a35d7SMatthias Sohn                <id>pack200-pack</id>
364b97a35d7SMatthias Sohn                <goals>
365b97a35d7SMatthias Sohn                  <goal>pack</goal>
366b97a35d7SMatthias Sohn                </goals>
367b97a35d7SMatthias Sohn                <phase>verify</phase>
368b97a35d7SMatthias Sohn              </execution>
369b97a35d7SMatthias Sohn            </executions>
370b97a35d7SMatthias Sohn          </plugin>
371b97a35d7SMatthias Sohn          <plugin>
372b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
373b97a35d7SMatthias Sohn            <artifactId>tycho-p2-plugin</artifactId>
374b97a35d7SMatthias Sohn            <executions>
375b97a35d7SMatthias Sohn              <execution>
376b97a35d7SMatthias Sohn                <id>p2-metadata</id>
377b97a35d7SMatthias Sohn                <goals>
378b97a35d7SMatthias Sohn                  <goal>p2-metadata</goal>
379b97a35d7SMatthias Sohn                </goals>
380b97a35d7SMatthias Sohn                <phase>verify</phase>
381b97a35d7SMatthias Sohn              </execution>
382b97a35d7SMatthias Sohn            </executions>
383b97a35d7SMatthias Sohn            <configuration>
384b97a35d7SMatthias Sohn              <defaultP2Metadata>false</defaultP2Metadata>
385b97a35d7SMatthias Sohn            </configuration>
386b97a35d7SMatthias Sohn          </plugin>
387b97a35d7SMatthias Sohn        </plugins>
388b97a35d7SMatthias Sohn      </build>
389b97a35d7SMatthias Sohn    </profile>
390b97a35d7SMatthias Sohn    <profile>
391b97a35d7SMatthias Sohn      <id>eclipse-pack</id>
392b97a35d7SMatthias Sohn      <build>
393b97a35d7SMatthias Sohn        <plugins>
394b97a35d7SMatthias Sohn          <plugin>
395b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
396b97a35d7SMatthias Sohn            <artifactId>target-platform-configuration</artifactId>
397b97a35d7SMatthias Sohn            <configuration>
398b97a35d7SMatthias Sohn              <includePackedArtifacts>true</includePackedArtifacts>
399b97a35d7SMatthias Sohn            </configuration>
400b97a35d7SMatthias Sohn          </plugin>
401b97a35d7SMatthias Sohn          <plugin>
402b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
403b97a35d7SMatthias Sohn            <artifactId>tycho-pack200a-plugin</artifactId>
404b97a35d7SMatthias Sohn            <executions>
405b97a35d7SMatthias Sohn              <execution>
406b97a35d7SMatthias Sohn                <id>pack200-normalize</id>
407b97a35d7SMatthias Sohn                <goals>
408b97a35d7SMatthias Sohn                  <goal>normalize</goal>
409b97a35d7SMatthias Sohn                </goals>
410b97a35d7SMatthias Sohn              </execution>
411b97a35d7SMatthias Sohn            </executions>
412b97a35d7SMatthias Sohn          </plugin>
413b97a35d7SMatthias Sohn          <plugin>
414b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho.extras</groupId>
415b97a35d7SMatthias Sohn            <artifactId>tycho-pack200b-plugin</artifactId>
416b97a35d7SMatthias Sohn            <executions>
417b97a35d7SMatthias Sohn              <execution>
418b97a35d7SMatthias Sohn                <id>pack200-pack</id>
419b97a35d7SMatthias Sohn                <goals>
420b97a35d7SMatthias Sohn                  <goal>pack</goal>
421b97a35d7SMatthias Sohn                </goals>
422b97a35d7SMatthias Sohn              </execution>
423b97a35d7SMatthias Sohn            </executions>
424b97a35d7SMatthias Sohn          </plugin>
425b97a35d7SMatthias Sohn          <plugin>
426b97a35d7SMatthias Sohn            <groupId>org.eclipse.tycho</groupId>
427b97a35d7SMatthias Sohn            <artifactId>tycho-p2-plugin</artifactId>
428b97a35d7SMatthias Sohn            <executions>
429b97a35d7SMatthias Sohn              <execution>
430b97a35d7SMatthias Sohn                <id>p2-metadata</id>
431b97a35d7SMatthias Sohn                <goals>
432b97a35d7SMatthias Sohn                  <goal>p2-metadata</goal>
433b97a35d7SMatthias Sohn                </goals>
434b97a35d7SMatthias Sohn                <phase>package</phase>
435b97a35d7SMatthias Sohn              </execution>
436b97a35d7SMatthias Sohn            </executions>
437b97a35d7SMatthias Sohn            <configuration>
438b97a35d7SMatthias Sohn              <defaultP2Metadata>false</defaultP2Metadata>
439b97a35d7SMatthias Sohn            </configuration>
440b97a35d7SMatthias Sohn          </plugin>
441b97a35d7SMatthias Sohn        </plugins>
442b97a35d7SMatthias Sohn      </build>
443b97a35d7SMatthias Sohn    </profile>
444b97a35d7SMatthias Sohn  </profiles>
445f2455798SMatthias Sohn</project>
446