Remove Uncategorized category using JBoss plugin and downgrade Tycho
[deliverable/tracecompass.git] / org.eclipse.tracecompass.releng-site / pom.xml
CommitLineData
1b70b6dc
PT
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>
8336b412
AM
20 <artifactId>org.eclipse.tracecompass</artifactId>
21 <groupId>org.eclipse.tracecompass</groupId>
81539df0 22 <version>0.1.0-SNAPSHOT</version>
1b70b6dc
PT
23 </parent>
24
8336b412 25 <artifactId>org.eclipse.tracecompass.releng-site</artifactId>
81539df0 26 <version>0.1.0-SNAPSHOT</version>
8336b412 27 <name>Trace Compass Repository</name>
1b70b6dc
PT
28 <packaging>eclipse-repository</packaging>
29
d538e443
MAL
30<build>
31 <plugins>
32 <plugin>
33 <groupId>org.jboss.tools.tycho-plugins</groupId>
34 <artifactId>repository-utils</artifactId>
35 <executions>
36 <execution>
37 <id>generate-facade</id>
38 <phase>package</phase>
39 <goals>
40 <goal>generate-repository-facade</goal>
41 </goals>
42 </execution>
43 </executions>
44 <configuration>
45 <removeDefaultCategory>true</removeDefaultCategory>
46 <skipWebContentGeneration>true</skipWebContentGeneration>
47 </configuration>
48 </plugin>
49 </plugins>
50</build>
51
33112414
AM
52<profiles>
53 <profile>
e09a2e40 54 <id>build-update-site</id>
33112414 55 <properties>
bbd79a63 56 <siteDestination>/home/data/httpd/download.eclipse.org/tracecompass/master/nightly/</siteDestination>
33112414
AM
57 </properties>
58 <build>
59 <plugins>
60 <plugin>
61 <artifactId>maven-antrun-plugin</artifactId>
62 <executions>
63 <execution>
64 <id>deploy</id>
65 <phase>install</phase>
66 <goals>
67 <goal>run</goal>
68 </goals>
69 <configuration>
70 <target>
71 <delete includeemptydirs="false">
72 <fileset
73 dir="${siteDestination}">
74 <include name="**" />
75 </fileset>
76 </delete>
77 <copy includeemptydirs="false"
78 todir="${siteDestination}">
79 <fileset dir="target/repository">
80 <include name="**" />
81 </fileset>
82 </copy>
83 </target>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 </build>
90 </profile>
91</profiles>
1b70b6dc
PT
92
93</project>
This page took 0.064427 seconds and 5 git commands to generate.