forked from eclipse-linuxtools/org.eclipse.linuxtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
84 lines (81 loc) · 2.51 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2011, 2019 Red Hat, Inc. and others
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0
which is available at https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
Red Hat Incorporated - initial implementation
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.linuxtools.releng</groupId>
<artifactId>linuxtools-releng-parent</artifactId>
<version>8.16.0-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.linuxtools.docker-site</artifactId>
<packaging>eclipse-repository</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-publisher-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>default-archive-repository</id>
<phase>verify</phase>
<goals>
<goal>archive-repository</goal>
</goals>
<configuration>
<finalName>${project.artifactId}</finalName>
<includeAllSources>true</includeAllSources>
</configuration>
</execution>
</executions>
<configuration>
<extraArtifactRepositoryProperties>
<p2.statsURI>https://download.eclipse.org/stats</p2.statsURI>
<p2.mirrorsURL>https://www.eclipse.org/downloads/download.php?file=/linuxtools/${mirror-docker-repo-name}</p2.mirrorsURL>
</extraArtifactRepositoryProperties>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-gpg-plugin</artifactId>
<executions>
<execution>
<id>pgpsigner</id>
<goals>
<goal>sign-p2-artifacts</goal>
</goals>
<configuration>
<keyname>F5CBCFD82F07D82E</keyname>
<skipIfJarsigned>false</skipIfJarsigned>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<name>Linux Tools Docker p2 Repository</name>
</project>