blob: 89b989d551b39a534e54384c7247748e231a8c2b [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2014 1C LLC.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Vladimir Piskarev (1C) - initial API and implementation
George Suaridze (1C)
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.handly</groupId>
<artifactId>releng</artifactId>
<version>0.1.1-SNAPSHOT</version>
<relativePath>../releng</relativePath>
</parent>
<artifactId>repository</artifactId>
<packaging>eclipse-repository</packaging>
<properties>
<handly.version>0.1.1.${buildQualifier}</handly.version>
<ant-optional.version>1.5.3-1</ant-optional.version>
<ant-xalan2.version>1.9.4</ant-xalan2.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>archive-repository</goal>
</goals>
<configuration>
<finalName>handly-repository-incubation-${handly.version}</finalName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>version</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo message="${handly.version}" file="${project.build.directory}/VERSION"/>
</target>
</configuration>
</execution>
<execution>
<id>test-report</id>
<phase>verify</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<junitreport todir="${project.build.directory}">
<fileset dir="${project.build.directory}/../../">
<include name="**/target/surefire-reports/TEST-*.xml"/>
</fileset>
<report format="noframes" todir="${project.build.directory}"/>
</junitreport>
</target>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-optional</artifactId>
<version>${ant-optional.version}</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-apache-xalan2</artifactId>
<version>${ant-xalan2.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>