Implement Team->Add to Index action
[egit.git] / org.eclipse.egit-updatesite / pom.xml
blobd0534d13aba8bc227b523edd65938d2d98f7d32f
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.6.0-SNAPSHOT</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>
27   <dependencies>
28     <dependency>
29       <groupId>org.eclipse.jgit</groupId>
30       <artifactId>org.eclipse.jgit</artifactId>
31       <version>${jgit-version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.eclipse.jgit</groupId>
35       <artifactId>org.eclipse.jgit.feature</artifactId>
36       <version>${jgit-version}</version>
37     </dependency>
38   </dependencies>
40   <!-- see http://issues.sonatype.org/browse/TYCHO-313 -->
41   <version>0.6.0</version>
43   <build>
44     <plugins>
45       <plugin>
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-assembly-plugin</artifactId>
48         <version>2.2-beta-4</version>
49         <configuration>
50           <descriptors>
51             <descriptor>assembly.xml</descriptor>
52           </descriptors>
53         </configuration>
54         <executions>
55           <execution>
56             <id>make-assembly</id>
57             <phase>package</phase>
58             <goals>
59               <goal>single</goal>
60             </goals>
61           </execution>
62         </executions>
63       </plugin>
65       <plugin>
66         <artifactId>maven-resources-plugin</artifactId>
67         <executions>
68           <execution>
69             <id>copy-resources</id>
70             <phase>validate</phase>
71             <goals>
72               <goal>copy-resources</goal>
73             </goals>
74             <configuration>
75               <outputDirectory>${basedir}/target/site</outputDirectory>
76               <resources>
77                 <resource>
78                   <directory>.</directory>
79                   <includes>
80                     <include>index.html</include>
81                     <include>web/*</include>
82                   </includes>
83                 </resource>
84               </resources>
85             </configuration>
86           </execution>
87         </executions>
88       </plugin>
89     </plugins>
90   </build>
92 </project>