alagarde | f77812b | 2011-11-29 09:39:51 +0100 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <!--
|
| 3 | Copyright (C) 2011 Obeo
|
| 4 |
|
| 5 | Cedric Brun <cedric.brun@obeo.fr>
|
| 6 |
|
| 7 | -->
|
| 8 |
|
| 9 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
| 10 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 11 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 12 | <modelVersion>4.0.0</modelVersion>
|
| 13 |
|
| 14 | <parent>
|
| 15 | <groupId>org.eclipse.mylyn.docs.intent-group</groupId>
|
| 16 | <artifactId>intent-parent</artifactId>
|
| 17 | <version>0.7.0-SNAPSHOT</version>
|
| 18 | <relativePath>../..</relativePath>
|
| 19 | </parent>
|
| 20 |
|
| 21 | <artifactId>org.eclipse.mylyn.docs.intent.update</artifactId>
|
| 22 | <packaging>eclipse-repository</packaging>
|
| 23 |
|
| 24 | <!-- see http://issues.sonatype.org/browse/TYCHO-313 -->
|
| 25 | <version>0.7.0-SNAPSHOT</version>
|
| 26 |
|
| 27 | <build>
|
| 28 | <plugins>
|
| 29 | <plugin>
|
| 30 | <artifactId>maven-resources-plugin</artifactId>
|
| 31 | <executions>
|
| 32 | <execution>
|
| 33 | <id>copy-resources</id>
|
| 34 | <phase>validate</phase>
|
| 35 | <goals>
|
| 36 | <goal>copy-resources</goal>
|
| 37 | </goals>
|
| 38 | <configuration>
|
| 39 | <outputDirectory>${basedir}/target/repository</outputDirectory>
|
| 40 | <resources>
|
| 41 | <resource>
|
| 42 | <directory>.</directory>
|
| 43 | <includes>
|
| 44 | <include>index.html</include>
|
| 45 | <include>web/*</include>
|
| 46 | </includes>
|
| 47 | </resource>
|
| 48 | </resources>
|
| 49 | </configuration>
|
| 50 | </execution>
|
| 51 | </executions>
|
| 52 | </plugin>
|
| 53 | </plugins>
|
| 54 | </build>
|
| 55 |
|
| 56 | </project>
|