EGit 0.8.1
[egit.git] / org.eclipse.egit-updatesite / pom.xml
bloba700fac4070debe33d05e302a4e6d06da79ec6f9
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com>
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 -->
11 <project xmlns="http://maven.apache.org/POM/4.0.0"
12     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
14   <modelVersion>4.0.0</modelVersion>
16   <parent>
17     <groupId>org.eclipse.egit</groupId>
18     <artifactId>egit-parent</artifactId>
19     <version>0.8.1</version>
20   </parent>
22   <artifactId>org.eclipse.egit-updatesite</artifactId>
23   <packaging>eclipse-update-site</packaging>
25   <name>Eclipse Git Plugin Update Site (Incubation)</name>
26   <!-- see http://issues.sonatype.org/browse/TYCHO-313 -->
27   <version>0.8.1</version>
29   <build>
30     <plugins>
31       <plugin>
32         <groupId>org.apache.maven.plugins</groupId>
33         <artifactId>maven-assembly-plugin</artifactId>
34         <version>2.2-beta-4</version>
35         <configuration>
36           <descriptors>
37             <descriptor>assembly.xml</descriptor>
38           </descriptors>
39         </configuration>
40         <executions>
41           <execution>
42             <id>make-assembly</id>
43             <phase>package</phase>
44             <goals>
45               <goal>single</goal>
46             </goals>
47           </execution>
48         </executions>
49       </plugin>
51       <plugin>
52         <artifactId>maven-resources-plugin</artifactId>
53         <executions>
54           <execution>
55             <id>copy-resources</id>
56             <phase>validate</phase>
57             <goals>
58               <goal>copy-resources</goal>
59             </goals>
60             <configuration>
61               <outputDirectory>${basedir}/target/site</outputDirectory>
62               <resources>
63                 <resource>
64                   <directory>.</directory>
65                   <includes>
66                     <include>index.html</include>
67                     <include>web/*</include>
68                   </includes>
69                 </resource>
70               </resources>
71             </configuration>
72           </execution>
73         </executions>
74       </plugin>
75     </plugins>
76   </build>
78 </project>