| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Copyright (C) 2022, 2023 Kichwa Coders Canada Inc. and others. |
| All rights reserved. This program and the accompanying materials |
| are made available under the terms of the Eclipse Public License v2.0 |
| which accompanies this distribution, and is available at |
| http://www.eclipse.org/legal/epl-v20.html |
| --> |
| <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>org.eclipse.epp</groupId> |
| <artifactId>org.eclipse.epp-parent</artifactId> |
| <version>4.28.0-SNAPSHOT</version> |
| <relativePath>../parent</relativePath> |
| </parent> |
| |
| <artifactId>releng.tools</artifactId> |
| <description>Prepare releng scripts the depend on common variables</description> |
| <packaging>pom</packaging> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>properties-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>write-project-properties</goal> |
| </goals> |
| <configuration> |
| <outputFile> |
| ${project.basedir}/epp.properties |
| </outputFile> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |