Update maven profile names
[deliverable/tracecompass.git] / org.eclipse.tracecompass.releng-site / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2011 Ericsson
4
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Eclipse Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/epl-v10.html
9
10 Contributors:
11 Ericsson - initial implementation
12 -->
13
14 <project xmlns="http://maven.apache.org/POM/4.0.0"
15 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
17 <modelVersion>4.0.0</modelVersion>
18
19 <parent>
20 <artifactId>org.eclipse.tracecompass</artifactId>
21 <groupId>org.eclipse.tracecompass</groupId>
22 <version>3.2.0-SNAPSHOT</version>
23 </parent>
24
25 <artifactId>org.eclipse.tracecompass.releng-site</artifactId>
26 <version>3.2.0-SNAPSHOT</version>
27 <name>Trace Compass Repository</name>
28 <packaging>eclipse-repository</packaging>
29
30 <profiles>
31 <profile>
32 <id>build-update-site</id>
33 <properties>
34 <siteDestination>/var/www/tools/tracecompass/nightly/</siteDestination>
35 </properties>
36 <build>
37 <plugins>
38 <plugin>
39 <artifactId>maven-antrun-plugin</artifactId>
40 <executions>
41 <execution>
42 <id>deploy</id>
43 <phase>install</phase>
44 <goals>
45 <goal>run</goal>
46 </goals>
47 <configuration>
48 <target>
49 <delete includeemptydirs="false">
50 <fileset
51 dir="${siteDestination}">
52 <include name="**" />
53 </fileset>
54 </delete>
55 <copy includeemptydirs="false"
56 todir="${siteDestination}">
57 <fileset dir="target/repository">
58 <include name="**" />
59 </fileset>
60 </copy>
61 </target>
62 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
67 </build>
68 </profile>
69 </profiles>
70
71 </project>
This page took 0.118392 seconds and 5 git commands to generate.