Update target platform to I20210626190330
[egit/eclipse.git] / org.eclipse.egit.repository / pom.xml
blob1021be7832f08de5f46e754c0ca932ac310377bf
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com>
4    Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com>
5    Copyright (C) 2011-2012, Matthias Sohn <matthias.sohn@sap.com>
7    All rights reserved. This program and the accompanying materials
8    are made available under the terms of the Eclipse Public License 2.0
9    which accompanies this distribution, and is available at
10    https://www.eclipse.org/legal/epl-2.0/
12    SPDX-License-Identifier: EPL-2.0
13 -->
15 <project xmlns="http://maven.apache.org/POM/4.0.0"
16     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
18   <modelVersion>4.0.0</modelVersion>
20   <parent>
21     <groupId>org.eclipse.egit</groupId>
22     <artifactId>egit-parent</artifactId>
23     <version>5.13.0-SNAPSHOT</version>
24   </parent>
26   <artifactId>org.eclipse.egit.repository</artifactId>
27   <packaging>eclipse-repository</packaging>
29   <name>EGit P2 Repository</name>
30   <properties>
31     <p2MirrorsURL>https://www.eclipse.org/downloads/download.php?file=${PUBLISH_FOLDER}&amp;format=xml</p2MirrorsURL>
32     <p2StatsURL>https://download.eclipse.org/stats/egit/${project.artifactId}</p2StatsURL>
33     <!-- At the moment, this list of features needs to be maintained manually. -->
34     <statsTrackedArtifacts>org.eclipse.jgit.feature,org.eclipse.jgit.source.feature,org.eclipse.jgit.pgm.feature,org.eclipse.jgit.pgm.source.feature,org.eclipse.jgit.http.apache.feature,org.eclipse.jgit.ssh.apache.feature,org.eclipse.egit.feature,org.eclipse.egit.gitflow.feature,org.eclipse.egit.mylyn.feature,org.eclipse.egit.source.feature</statsTrackedArtifacts>
35   </properties>
37   <pluginRepositories>
38     <pluginRepository>
39       <id>jboss-public-repository-group</id>
40       <name>JBoss Public Repository Group</name>
41       <url>https://repository.jboss.org/nexus/content/groups/public/</url>
42     </pluginRepository>
43   </pluginRepositories>
44   <build>
45     <plugins>
46       <plugin>
47         <groupId>org.jboss.tools.tycho-plugins</groupId>
48         <artifactId>repository-utils</artifactId>
49         <executions>
50           <execution>
51             <id>generate-facade</id>
52             <phase>package</phase>
53             <goals>
54               <goal>generate-repository-facade</goal>
55             </goals>
56             <configuration>
57               <siteTemplateFolder>siteTemplate/</siteTemplateFolder>
58               <!-- Symbols are used while expanding index.html template -->
59               <symbols>
60                 <update.site.name>EGit Update Site</update.site.name>
61                 <update.site.description>Use this URL in Eclipse to install EGit and JGit</update.site.description>
62                 <update.site.version>${project.version}</update.site.version>
63                 <target.eclipse.version>4.6.0 (Neon) or newer</target.eclipse.version>
64               </symbols>
65               <associateSites>
66                 <site>https://download.eclipse.org/egit/github/updates</site>
67                 <site>https://download.eclipse.org/egit/github/updates-nightly</site>
68                 <site>https://download.eclipse.org/e4/snapshots/org.eclipse.e4.ui</site>
69                 <site>https://download.eclipse.org/tools/orbit/downloads/drops/I20210626190330/repository</site>
70               </associateSites>
71             </configuration>
72           </execution>
73         </executions>
74       </plugin>
76       <plugin>
77         <groupId>org.eclipse.tycho.extras</groupId>
78         <artifactId>tycho-eclipserun-plugin</artifactId>
79         <version>${tycho-version}</version>
80         <executions>
81          <execution>
82           <id>add-repo-properties</id>
83           <goals>
84            <goal>eclipse-run</goal>
85           </goals>
86           <phase>package</phase>
87           <configuration>
88            <executionEnvironment>JavaSE-1.8</executionEnvironment>
89            <appArgLine>-application org.eclipse.wtp.releng.tools.addRepoProperties</appArgLine>
90            <!-- See <http://wiki.eclipse.org/Equinox/p2/p2.mirrorsURL>. -->
91            <!-- See <http://wiki.eclipse.org/Equinox_p2_download_stats>. -->
92            <argLine>-DartifactRepoDirectory=${project.build.directory}/repository -Dp2MirrorsURL=${p2MirrorsURL} -Dp2StatsURI=${p2StatsURL} -DstatsTrackedArtifacts=${statsTrackedArtifacts} -DstatsArtifactsSuffix=-${project.version}</argLine>
93            <dependencies>
94             <dependency>
95              <artifactId>org.eclipse.wtp.releng.tools.feature</artifactId>
96              <type>eclipse-feature</type>
97             </dependency>
98            </dependencies>
99            <repositories>
100             <repository>
101              <url>https://download.eclipse.org/webtools/downloads/drops/R3.19.0/R-3.19.0-20200828030223/repositoryunittests/</url>
102              <layout>p2</layout>
103             </repository>
104             <repository>
105              <url>https://download.eclipse.org/releases/neon/201705151400/</url>
106              <layout>p2</layout>
107             </repository>
108            </repositories>
109           </configuration>
110          </execution>
111         </executions>
112       </plugin>
113     </plugins>
114   </build>
115 </project>