blob: e9a4a207275a5cd1c351c471eabc09fbd6c27147 [file] [log] [blame]
Stephan Wahlbrink30df8d02020-02-19 16:31:15 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 #=============================================================================#
4 # Copyright (c) 2018, 2020 Stephan Wahlbrink and others.
5 #
6 # This program and the accompanying materials are made available under the
7 # terms of the Eclipse Public License 2.0 which is available at
8 # https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
9 # which is available at https://www.apache.org/licenses/LICENSE-2.0.
10 #
11 # SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
12 #
13 # Contributors:
14 # Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
15 #=============================================================================#
16-->
17
18<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
24 <groupId>org.eclipse.statet-releng</groupId>
25 <artifactId>parent</artifactId>
Stephan Wahlbrinka5f1f8b2020-03-05 09:35:40 +010026 <version>4.1.0.202003050800-r</version>
Stephan Wahlbrink30df8d02020-02-19 16:31:15 +010027 </parent>
28
29 <artifactId>eclipse.ide-parent</artifactId>
Stephan Wahlbrinka5f1f8b2020-03-05 09:35:40 +010030 <version>4.1.0.202003050800-r</version>
Stephan Wahlbrink30df8d02020-02-19 16:31:15 +010031 <packaging>pom</packaging>
32
33 <name>Eclipse StatET - Parent for Eclipse IDE based applications</name>
34
35 <properties>
36 <statet.dependencies.url>file:///${user.dir}/3rdparty/_assemblies/repository/target/repository</statet.dependencies.url>
37 </properties>
38
39 <repositories>
40 <repository>
41 <id>statet.dependencies</id>
42 <url>${statet.dependencies.url}</url>
43 <layout>p2</layout>
44 </repository>
45 </repositories>
46
47 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.eclipse.tycho</groupId>
51 <artifactId>target-platform-configuration</artifactId>
52 <configuration>
53 <resolver>p2</resolver>
54 <target>
55 <artifact>
56 <groupId>org.eclipse.statet-releng</groupId>
57 <artifactId>target-eclipse.ide</artifactId>
Stephan Wahlbrinka5f1f8b2020-03-05 09:35:40 +010058 <version>4.1.0.202003050800-r</version>
Stephan Wahlbrink30df8d02020-02-19 16:31:15 +010059 </artifact>
60 </target>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65
66</project>