alagarde | 4ed2ef8 | 2011-11-29 10:28:48 +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 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
| 9 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 10 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 11 | <modelVersion>4.0.0</modelVersion>
|
| 12 |
|
| 13 | <parent>
|
| 14 | <groupId>org.eclipse.mylyn.docs.intent-group</groupId>
|
| 15 | <artifactId>intent-parent</artifactId>
|
Alex Lagarde | 5542ab3 | 2013-09-11 11:20:02 +0200 | [diff] [blame] | 16 | <version>0.9.0-SNAPSHOT</version>
|
alagarde | 4ed2ef8 | 2011-11-29 10:28:48 +0100 | [diff] [blame] | 17 | <relativePath>../..</relativePath>
|
| 18 | </parent>
|
| 19 |
|
| 20 | <artifactId>org.eclipse.mylyn.docs.intent</artifactId>
|
| 21 | <packaging>eclipse-plugin</packaging>
|
| 22 |
|
| 23 | <build>
|
| 24 | <plugins>
|
| 25 | <plugin>
|
| 26 | <groupId>org.codehaus.mojo</groupId>
|
| 27 | <artifactId>build-helper-maven-plugin</artifactId>
|
| 28 | <version>1.3</version>
|
| 29 | <executions>
|
| 30 | <execution>
|
| 31 | <id>attach-artifacts</id>
|
| 32 | <phase>package</phase>
|
| 33 | <goals>
|
| 34 | <goal>attach-artifact</goal>
|
| 35 | </goals>
|
| 36 | <configuration>
|
| 37 | <artifacts>
|
| 38 | <artifact>
|
| 39 | <file>dev/target platform/indigo-sdk.target</file>
|
| 40 | <type>target</type>
|
| 41 | <classifier>dev/target platform/indigo-sdk</classifier>
|
| 42 | </artifact>
|
| 43 | </artifacts>
|
| 44 | </configuration>
|
| 45 | </execution>
|
| 46 | </executions>
|
| 47 | </plugin>
|
| 48 | </plugins>
|
| 49 | </build>
|
| 50 |
|
| 51 | </project>
|