]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/plugins/pom.xml
6058db67882428b5dd6f9d187ec38c2cbb57ee42
[lgpl/argeo-commons.git] / security / plugins / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?><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 <version>1.2.3-SNAPSHOT</version>
6 <artifactId>security</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.commons.security</groupId>
10 <artifactId>plugins</artifactId>
11 <name>Commons Security Eclipse Plugins</name>
12 <packaging>pom</packaging>
13 <modules>
14 <module>org.argeo.security.equinox</module>
15 <module>org.argeo.security.ui</module>
16 <module>org.argeo.security.ui.admin</module>
17 <module>org.argeo.security.ui.rcp</module>
18 <module>org.argeo.security.ui.rap</module>
19 </modules>
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>maven-bundle-plugin</artifactId>
25 <configuration>
26 <instructions>
27 <Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
28 </instructions>
29 </configuration>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-source-plugin</artifactId>
34 <configuration>
35 <!-- Prevents source jars to contain misleading data -->
36 <excludes>
37 <exclude>plugin.xml</exclude>
38 <exclude>META-INF/MANIFEST.MF</exclude>
39 </excludes>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44 </project>