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