aplatov | 203653c | 2010-11-17 17:03:39 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
asobolev | 66d88a4 | 2011-09-12 09:32:48 +0000 | [diff] [blame] | 2 | <project |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <parent> |
| 7 | <artifactId>core</artifactId> |
| 8 | <groupId>org.eclipse.dltk.core</groupId> |
| 9 | <version>1.0.0-SNAPSHOT</version> |
| 10 | </parent> |
| 11 | <groupId>org.eclipse.dltk.core</groupId> |
| 12 | <artifactId>org.eclipse.dltk.core-updatesite</artifactId> |
| 13 | <version>1.0.0-SNAPSHOT</version> |
| 14 | <packaging>eclipse-update-site</packaging> |
asobolev | 2b6b523 | 2011-09-13 08:41:20 +0000 | [diff] [blame^] | 15 | <build> |
| 16 | <plugins> |
| 17 | <plugin> |
| 18 | <groupId>org.apache.maven.plugins</groupId> |
| 19 | <artifactId>maven-assembly-plugin</artifactId> |
| 20 | <version>2.2.1</version> |
| 21 | <configuration> |
| 22 | <descriptors> |
| 23 | <descriptor>assembly.xml</descriptor> |
| 24 | </descriptors> |
| 25 | <finalName>dltk</finalName> |
| 26 | </configuration> |
| 27 | <executions> |
| 28 | <execution> |
| 29 | <id>make-assembly</id> |
| 30 | <phase>package</phase> |
| 31 | <goals> |
| 32 | <goal>single</goal> |
| 33 | </goals> |
| 34 | </execution> |
| 35 | </executions> |
| 36 | </plugin> |
| 37 | </plugins> |
| 38 | </build> |
aplatov | 203653c | 2010-11-17 17:03:39 +0000 | [diff] [blame] | 39 | </project> |