blob: eccfe0fb4f9cd5b255d9e9e53d5a3698a9a88202 [file] [log] [blame]
<!--
* Copyright (c) 2011 PetalsLink
* 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:
* Mickael istria (PetalsLink)
-->
<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>
<groupId>org.eclipse.gmf-tooling</groupId>
<artifactId>repository</artifactId>
<packaging>eclipse-repository</packaging>
<parent>
<groupId>org.eclipse.gmf-tooling</groupId>
<artifactId>parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<!-- this is an attempt to fix build #553, with respect to #350133, comment-40, but it did not worked -->
<!--
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<filters>
<filter>
<type>eclipse-plugin</type>
<id>org.eclipse.jdt.core</id>
<restrictTo>
<version>3.10.0.v20131212-1600</version>
</restrictTo>
</filter>
</filters>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>deploy</id>
<phase>verify</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<delete includeemptydirs="false" quiet="true">
<fileset dir="${publish-path}">
<include name="**" />
</fileset>
</delete>
<copy includeemptydirs="false" todir="${publish-path}">
<fileset dir="target/repository/">
<include name="**" />
</fileset>
</copy>
<ant
antfile="/shared/modeling/tools/promotion/manage-composite.xml"
target="add">
<property name="user.dir" value="${composite-path}"/>
<property name="composite.name" value="GMF Tooling"/>
<property name="child.repository" value="${buildQualifier}"/>
</ant>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>