]> git.argeo.org Git - gpl/argeo-slc.git/blob - eclipse/features/org.argeo.slc.ui.launch.feature/pom.xml
Fix the format of tree test result attributes.
[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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>argeo-slc</artifactId>
6 <version>0.11.1-SNAPSHOT</version>
7 <relativePath>../org.argeo.slc</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.ui.launch.feature</artifactId>
10 <packaging>pom</packaging>
11 <name>Argeo SLC Launch Eclipse Feature</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.argeo.slc.maven.plugins</groupId>
16 <artifactId>maven-argeo-pde-plugin</artifactId>
17 <executions>
18 <execution>
19 <id>argeo-pde-build</id>
20 <phase>compile</phase>
21 <goals>
22 <goal>buildElement</goal>
23 </goals>
24 <configuration>
25 <eclipseBuildDir>
26 ${eclipseBuildDir}
27 </eclipseBuildDir>
28 <buildScriptProperties>
29 -DjavacSource=1.5 -DjavacTarget=1.5
30 </buildScriptProperties>
31 </configuration>
32 </execution>
33 <execution>
34 <id>argeo-pde-clean</id>
35 <phase>clean</phase>
36 <goals>
37 <goal>clean</goal>
38 </goals>
39 </execution>
40 </executions>
41 </plugin>
42 <plugin>
43 <groupId>org.codehaus.mojo</groupId>
44 <artifactId>build-helper-maven-plugin</artifactId>
45 <executions>
46 <execution>
47 <id>attach-feature</id>
48 <phase>package</phase>
49 <goals>
50 <goal>attach-artifact</goal>
51 </goals>
52 <configuration>
53 <artifacts>
54 <artifact>
55 <file>
56 ${project.build.directory}/${project.artifactId}.zip
57 </file>
58 <type>zip</type>
59 <classifier>feature</classifier>
60 </artifact>
61 </artifacts>
62 </configuration>
63 </execution>
64 <execution>
65 <id>attach-updatesite</id>
66 <phase>package</phase>
67 <goals>
68 <goal>attach-artifact</goal>
69 </goals>
70 <configuration>
71 <artifacts>
72 <artifact>
73 <file>
74 ${project.build.directory}/${project.artifactId}-updatesite.zip
75 </file>
76 <type>zip</type>
77 <classifier>updatesite</classifier>
78 </artifact>
79 </artifacts>
80 </configuration>
81 </execution>
82 </executions>
83 </plugin>
84
85 </plugins>
86 </build>
87
88 <pluginRepositories>
89 <pluginRepository>
90 <id>argeo-plugins</id>
91 <url>http://www.argeo.org/maven/argeo</url>
92 </pluginRepository>
93 </pluginRepositories>
94
95 </project>