Stephan Wahlbrink | 6370303 | 2018-11-02 19:03:07 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | #=============================================================================# |
Stephan Wahlbrink | 9db295a | 2019-01-24 22:23:22 +0100 | [diff] [blame] | 4 | # Copyright (c) 2018, 2019 Stephan Wahlbrink and others. |
Stephan Wahlbrink | 6370303 | 2018-11-02 19:03:07 +0100 | [diff] [blame] | 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 Wahlbrink | 5839b7a | 2019-05-08 11:42:46 +0200 | [diff] [blame] | 26 | <version>4.1.0-SNAPSHOT</version> |
Stephan Wahlbrink | 6370303 | 2018-11-02 19:03:07 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <groupId>org.eclipse.statet-assemblies</groupId> |
| 30 | <artifactId>org.eclipse.statet.repository</artifactId> |
| 31 | <packaging>eclipse-repository</packaging> |
Stephan Wahlbrink | 67e700d | 2019-02-08 19:39:05 +0100 | [diff] [blame] | 32 | |
| 33 | <build> |
Stephan Wahlbrink | 3cc29c7 | 2019-02-07 19:19:52 +0100 | [diff] [blame] | 34 | <resources> |
| 35 | <resource> |
| 36 | <directory>legal-resources</directory> |
| 37 | </resource> |
| 38 | </resources> |
| 39 | |
Stephan Wahlbrink | 67e700d | 2019-02-08 19:39:05 +0100 | [diff] [blame] | 40 | <plugins> |
| 41 | <plugin> |
| 42 | <groupId>org.eclipse.tycho</groupId> |
| 43 | <artifactId>target-platform-configuration</artifactId> |
| 44 | <configuration> |
| 45 | <resolver>p2</resolver> |
| 46 | <target> |
| 47 | <artifact> |
| 48 | <groupId>org.eclipse.statet-releng</groupId> |
| 49 | <artifactId>target-eclipse.ide</artifactId> |
Stephan Wahlbrink | 5839b7a | 2019-05-08 11:42:46 +0200 | [diff] [blame] | 50 | <version>4.1.0-SNAPSHOT</version> |
Stephan Wahlbrink | 67e700d | 2019-02-08 19:39:05 +0100 | [diff] [blame] | 51 | </artifact> |
| 52 | </target> |
| 53 | </configuration> |
| 54 | </plugin> |
| 55 | |
| 56 | <plugin> |
| 57 | <groupId>org.eclipse.tycho</groupId> |
| 58 | <artifactId>tycho-p2-repository-plugin</artifactId> |
| 59 | <configuration> |
Stephan Wahlbrink | 611a8a0 | 2019-04-29 08:58:05 +0200 | [diff] [blame] | 60 | <repositoryName>Eclipse StatET ${statet.version} (Target: ${statet.target.id}, Build ${statet.build.id})</repositoryName> |
| 61 | <finalName>statet-repository-${statet.target.id}-incubation-${statet.version}-${statet.build.id}</finalName> |
Stephan Wahlbrink | 67e700d | 2019-02-08 19:39:05 +0100 | [diff] [blame] | 62 | </configuration> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
Stephan Wahlbrink | 6370303 | 2018-11-02 19:03:07 +0100 | [diff] [blame] | 66 | |
| 67 | </project> |