Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Pearce2010-01-27 22:40:40 +0000
committerCode Review2010-01-27 22:40:40 +0000
commitc19b2fa876f953ddcc15576f6beb82bc749b32a4 (patch)
treea75aa4ea5bf2a5af568f2bf10dd8c3867db442e4
parent75bdcc7756c124adadfa5867b37889f530fa3af1 (diff)
parent38184d3ccc0427c144256c43c25fca75782f495f (diff)
downloadegit-c19b2fa876f953ddcc15576f6beb82bc749b32a4.tar.gz
egit-c19b2fa876f953ddcc15576f6beb82bc749b32a4.tar.xz
egit-c19b2fa876f953ddcc15576f6beb82bc749b32a4.zip
Merge "Add index.html to update site"
-rw-r--r--org.eclipse.egit-updatesite/pom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/org.eclipse.egit-updatesite/pom.xml b/org.eclipse.egit-updatesite/pom.xml
index dd449adb86..d0534d13ab 100644
--- a/org.eclipse.egit-updatesite/pom.xml
+++ b/org.eclipse.egit-updatesite/pom.xml
@@ -61,6 +61,31 @@
</execution>
</executions>
</plugin>
+
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-resources</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${basedir}/target/site</outputDirectory>
+ <resources>
+ <resource>
+ <directory>.</directory>
+ <includes>
+ <include>index.html</include>
+ <include>web/*</include>
+ </includes>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>

Back to the top