]> git.argeo.org Git - gpl/argeo-slc.git/blob - eclipse/features/org.argeo.slc.ui.launch.feature/pom.xml
Automated packaging with custom plugin
[gpl/argeo-slc.git] / eclipse / features / org.argeo.slc.ui.launch.feature / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo-slc</artifactId>
8 <version>0.9.4-SNAPSHOT</version>
9 <relativePath>../org.argeo.slc</relativePath>
10 </parent>
11 <artifactId>org.argeo.slc.ui.launch.feature</artifactId>
12 <packaging>pom</packaging>
13 <name>Argeo SLC Launch Eclipse Feature</name>
14 <properties>
15 <eclipseBuildDir>
16 /home/mbaudier/dev/eclipseBuild
17 </eclipseBuildDir>
18 </properties>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.argeo.slc.maven.plugins</groupId>
23 <artifactId>maven-argeo-pde-plugin</artifactId>
24 <executions>
25 <execution>
26 <id>argeo-pde-build</id>
27 <phase>compile</phase>
28 <goals>
29 <goal>buildElement</goal>
30 </goals>
31 <configuration>
32 <eclipseBuildDir>
33 ${eclipseBuildDir}
34 </eclipseBuildDir>
35 <buildScriptTargets>
36 build.update.jar zip.distribution
37 </buildScriptTargets>
38 <buildScriptProperties>
39 -DjavacSource=1.5 -DjavacTarget=1.5
40 </buildScriptProperties>
41 </configuration>
42 </execution>
43 <execution>
44 <id>argeo-pde-clean</id>
45 <phase>clean</phase>
46 <goals>
47 <goal>clean</goal>
48 </goals>
49 </execution>
50 </executions>
51 </plugin>
52 <plugin>
53 <groupId>org.codehaus.mojo</groupId>
54 <artifactId>build-helper-maven-plugin</artifactId>
55 <executions>
56 <execution>
57 <id>attach-artifacts</id>
58 <phase>package</phase>
59 <goals>
60 <goal>attach-artifact</goal>
61 </goals>
62 <configuration>
63 <artifacts>
64 <artifact>
65 <file>${project.build.directory}/${project.artifactId}.zip</file>
66 <type>zip</type>
67 <classifier>feature</classifier>
68 </artifact>
69 </artifacts>
70 </configuration>
71 </execution>
72 </executions>
73 </plugin>
74
75 </plugins>
76 </build>
77 </project>