blob: 4d3082a1fa913f0c12108b9b6c6a0e1f39b9ac9c [file] [log] [blame]
aplatov203653c2010-11-17 17:03:39 +00001<?xml version="1.0" encoding="UTF-8"?>
asobolev66d88a42011-09-12 09:32:48 +00002<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>
asobolev2b6b5232011-09-13 08:41:20 +000015 <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>
aplatov203653c2010-11-17 17:03:39 +000039</project>