blob: d85b28e8dc44f6f9c943f05edba71061bc2f2e5d [file] [log] [blame]
Florian Thienel8703b3a2014-11-22 19:52:16 +01001<project
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4 <modelVersion>4.0.0</modelVersion>
5 <artifactId>bundles</artifactId>
6 <packaging>pom</packaging>
7 <name>Vex Bundles Parent POM</name>
8
9 <parent>
10 <artifactId>root</artifactId>
11 <groupId>org.eclipse.vex</groupId>
Florian Thienel08725cf2014-12-27 15:15:45 +010012 <version>1.2.0-SNAPSHOT</version>
Florian Thienel8703b3a2014-11-22 19:52:16 +010013 <relativePath>./pom.xml</relativePath>
14 </parent>
15
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.eclipse.tycho</groupId>
20 <artifactId>tycho-source-plugin</artifactId>
21 <executions>
22 <execution>
23 <id>attach-source</id>
24 <goals>
25 <goal>plugin-source</goal>
26 </goals>
27 </execution>
28 </executions>
29 </plugin>
30 </plugins>
31 </build>
32
33 <profiles>
34 <profile>
35 <id>build-server</id>
36 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.eclipse.tycho.extras</groupId>
40 <artifactId>tycho-pack200a-plugin</artifactId>
41 <executions>
42 <execution>
43 <id>pack200-normalize</id>
44 <goals>
45 <goal>normalize</goal>
46 </goals>
47 </execution>
48 </executions>
49 </plugin>
50 <plugin>
51 <groupId>org.eclipse.cbi.maven.plugins</groupId>
52 <artifactId>eclipse-jarsigner-plugin</artifactId>
53 <executions>
54 <execution>
55 <id>sign</id>
56 <goals>
57 <goal>sign</goal>
58 </goals>
59 </execution>
60 </executions>
61 </plugin>
62 <plugin>
63 <groupId>org.eclipse.tycho.extras</groupId>
64 <artifactId>tycho-pack200b-plugin</artifactId>
65 <executions>
66 <execution>
67 <id>pack200-pack</id>
68 <goals>
69 <goal>pack</goal>
70 </goals>
71 </execution>
72 </executions>
73 </plugin>
74 <plugin>
75 <groupId>org.eclipse.tycho</groupId>
76 <artifactId>tycho-p2-plugin</artifactId>
77 <executions>
78 <execution>
79 <id>attach-p2-metadata</id>
80 <phase>package</phase>
81 <goals>
82 <goal>p2-metadata</goal>
83 </goals>
84 </execution>
85 </executions>
86 <configuration>
87 <defaultP2Metadata>false</defaultP2Metadata>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
92 </profile>
93 </profiles>
94
95</project>