]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/features/pom.xml
c01f98b8dcc6497146ab2a5d10871ec3b3367d98
[lgpl/argeo-commons.git] / eclipse / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" 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.commons.eclipse</groupId>
7 <artifactId>eclipse</artifactId>
8 <version>0.2.2-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
11 <artifactId>features</artifactId>
12 <name>Commons Eclipse Dependencies</name>
13 <packaging>pom</packaging>
14 <modules>
15 <module>org.argeo.eclipse.dep.common</module>
16 <module>org.argeo.eclipse.dep.rap</module>
17 <module>org.argeo.eclipse.dep.rcp</module>
18 </modules>
19 <build>
20 <resources>
21 <resource>
22 <directory>.</directory>
23 <includes>
24 <include>*.inf</include>
25 </includes>
26 </resource>
27 </resources>
28 <plugins>
29 <plugin>
30 <groupId>org.codehaus.mojo</groupId>
31 <artifactId>buildnumber-maven-plugin</artifactId>
32 <configuration>
33 <useLastCommittedRevision>false</useLastCommittedRevision>
34 </configuration>
35 </plugin>
36 <plugin>
37 <artifactId>maven-jar-plugin</artifactId>
38 <configuration>
39 <archive>
40 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
41 </archive>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <version>${version.maven-bundle-plugin}</version>
48 <configuration>
49 <manifestLocation>META-INF</manifestLocation>
50 <instructions>
51 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
52 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
53 </instructions>
54 </configuration>
55 <executions>
56 <execution>
57 <id>bundle-manifest</id>
58 <phase>process-resources</phase>
59 <goals>
60 <goal>manifest</goal>
61 </goals>
62 </execution>
63 </executions>
64 </plugin>
65
66 </plugins>
67 <pluginManagement>
68 <plugins>
69 <plugin>
70 <groupId>org.argeo.maven.plugins</groupId>
71 <artifactId>maven-argeo-osgi-plugin</artifactId>
72 <executions>
73 <execution>
74 <id>generate-descriptors</id>
75 <goals>
76 <goal>descriptors</goal>
77 </goals>
78 <phase>generate-resources</phase>
79 </execution>
80 <!-- <execution> <id>check-osgi</id> <phase>test</phase> <goals> <goal>equinox</goal>
81 </goals> <configuration> <onlyCheck>true</onlyCheck> <argsToAppend> <arg>-clean</arg>
82 </argsToAppend> </configuration> </execution> -->
83 </executions>
84 </plugin>
85 </plugins>
86 </pluginManagement>
87 </build>
88 </project>