-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpom.xml
62 lines (59 loc) · 2.22 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2008-2020 Sonatype, Inc.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.takari.tycho</groupId>
<artifactId>tycho-support</artifactId>
<version>1.1.0</version>
</parent>
<licenses>
<license>
<name>Eclipse Public License - v 2.0</name>
<url>http://www.eclipse.org/legal/epl-v20.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<!--
<groupId>org.sonatype.m2e.mavenarchiver</groupId>
Use exising groupId for now until we figure out how to migrate people. If it matters.
-->
<groupId>org.sonatype.m2e.extras</groupId>
<artifactId>org.sonatype.m2e.mavenarchiver.parent</artifactId>
<version>0.17.5-SNAPSHOT</version>
<packaging>pom</packaging>
<name>M2E Maven Archiver Connector</name>
<properties>
<repositoryPathId>m2eclipse-mavenarchiver</repositoryPathId>
<tychoVersion>1.6.0</tychoVersion>
<m2e-core.url>http://download.eclipse.org/technology/m2e/releases/1.14/</m2e-core.url>
<eclipse.stream>2019-12</eclipse.stream>
<eclipse-repo.url>http://download.eclipse.org/releases/${eclipse.stream}</eclipse-repo.url>
</properties>
<repositories>
<repository>
<id>platform</id>
<layout>p2</layout>
<url>${eclipse-repo.url}</url>
</repository>
<repository>
<id>eclipse-license</id>
<layout>p2</layout>
<url>https://download.eclipse.org/cbi/updates/license</url>
</repository>
</repositories>
<modules>
<module>org.sonatype.m2e.mavenarchiver</module>
<module>org.sonatype.m2e.mavenarchiver.feature</module>
<module>org.sonatype.m2e.mavenarchiver.tests</module>
<module>org.sonatype.m2e.mavenarchiver.repository</module>
</modules>
</project>