]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
8130856477abe33e6eadc872bde7368f7afd3cc1
[lgpl/argeo-commons.git] / 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.rcp</module>
17 </modules>
18 <build>
19 <resources>
20 <resource>
21 <directory>.</directory>
22 <includes>
23 <include>*.inf</include>
24 </includes>
25 </resource>
26 </resources>
27 <plugins>
28 <plugin>
29 <groupId>org.codehaus.mojo</groupId>
30 <artifactId>buildnumber-maven-plugin</artifactId>
31 <configuration>
32 <useLastCommittedRevision>false</useLastCommittedRevision>
33 </configuration>
34 </plugin>
35 <plugin>
36 <artifactId>maven-jar-plugin</artifactId>
37 <configuration>
38 <archive>
39 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
40 </archive>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
46 <version>${version.maven-bundle-plugin}</version>
47 <configuration>
48 <manifestLocation>META-INF</manifestLocation>
49 <instructions>
50 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
51 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
52 </instructions>
53 </configuration>
54 <executions>
55 <execution>
56 <id>bundle-manifest</id>
57 <phase>process-resources</phase>
58 <goals>
59 <goal>manifest</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64
65 </plugins>
66 <pluginManagement>
67 <plugins>
68 <plugin>
69 <groupId>org.argeo.maven.plugins</groupId>
70 <artifactId>maven-argeo-osgi-plugin</artifactId>
71 <executions>
72 <execution>
73 <id>generate-descriptors</id>
74 <goals>
75 <goal>descriptors</goal>
76 </goals>
77 <phase>generate-resources</phase>
78 </execution>
79 <!-- <execution> <id>check-osgi</id> <phase>test</phase> <goals> <goal>equinox</goal>
80 </goals> <configuration> <onlyCheck>true</onlyCheck> <argsToAppend> <arg>-clean</arg>
81 </argsToAppend> </configuration> </execution> -->
82 </executions>
83 </plugin>
84 </plugins>
85 </pluginManagement>
86 </build>
87 </project>