| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| Copyright (c) 2005, 2019 SAP SE | |
| 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/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <parent> | |
| <groupId>org.eclipse.graphiti</groupId> | |
| <artifactId>parent</artifactId> | |
| <version>0.19.0-SNAPSHOT</version> | |
| <relativePath>../../parent</relativePath> | |
| </parent> | |
| <name>Update Site</name> | |
| <artifactId>org.eclipse.graphiti.site</artifactId> | |
| <packaging>eclipse-repository</packaging> | |
| <pluginRepositories> | |
| <pluginRepository> | |
| <id>jboss-public-repository-group</id> | |
| <name>JBoss Public Repository Group</name> | |
| <url>https://repository.jboss.org/nexus/content/groups/public/</url> | |
| </pluginRepository> | |
| </pluginRepositories> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.eclipse.tycho</groupId> | |
| <artifactId>tycho-p2-repository-plugin</artifactId> | |
| <version>${tycho-version}</version> | |
| <configuration> | |
| <finalName>org.eclipse.graphiti.site-${qualifiedVersion}</finalName> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.eclipse.tycho.extras</groupId> | |
| <artifactId>tycho-source-feature-plugin</artifactId> | |
| <version>${tycho-version}</version> | |
| <executions> | |
| <execution> | |
| <id>source-feature</id> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>source-feature</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.eclipse.tycho</groupId> | |
| <artifactId>tycho-p2-plugin</artifactId> | |
| <version>${tycho-version}</version> | |
| <executions> | |
| <execution> | |
| <id>attached-p2-metadata</id> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>p2-metadata</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-resources-plugin</artifactId> | |
| <version>3.2.0</version> | |
| <executions> | |
| <execution> | |
| <id>copy-resources</id> | |
| <phase>prepare-package</phase> | |
| <goals> | |
| <goal>copy-resources</goal> | |
| </goals> | |
| <configuration> | |
| <outputDirectory>${basedir}/target/repository</outputDirectory> | |
| <resources> | |
| <resource> | |
| <directory>.</directory> | |
| <includes> | |
| <include>CODE_OF_CONDUCT.md</include> | |
| <include>EPL-2.0.txt</include> | |
| <include>LICENSE.txt</include> | |
| <include>NOTICE.md</include> | |
| <include>README.md</include> | |
| <include>SECURITY.md</include> | |
| </includes> | |
| </resource> | |
| </resources> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |