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