]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
4cf3b55d1287886d446c9186a5f9fa4a86f56e1c
[lgpl/argeo-commons.git] / 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.commons</groupId>
5 <artifactId>base</artifactId>
6 <version>2.1.4</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.commons.base</groupId>
10 <artifactId>plugins</artifactId>
11 <name>Commons OSGi Eclipse Plugins</name>
12 <packaging>pom</packaging>
13 <modules>
14 <module>org.argeo.osgi.ui.explorer</module>
15 </modules>
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.felix</groupId>
20 <artifactId>maven-bundle-plugin</artifactId>
21 <configuration>
22 <instructions>
23 <Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
24 </instructions>
25 </configuration>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-source-plugin</artifactId>
30 <configuration>
31 <!-- Prevents source jars to contain misleading data -->
32 <excludes>
33 <exclude>plugin.xml</exclude>
34 <exclude>META-INF/MANIFEST.MF</exclude>
35 </excludes>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40 </project>