]> git.argeo.org Git - lgpl/argeo-commons.git/blob - plugins/pom.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / plugins / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons</groupId>
6 <version>1.1.5-SNAPSHOT</version>
7 <artifactId>server</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.commons.server</groupId>
11 <artifactId>plugins</artifactId>
12 <name>Commons Server Eclipse Plugins</name>
13 <packaging>pom</packaging>
14 <modules>
15 <module>org.argeo.jcr.ui.explorer</module>
16 </modules>
17 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-source-plugin</artifactId>
22 <configuration>
23 <!-- Prevents source jars to contain misleading data -->
24 <excludes>
25 <exclude>plugin.xml</exclude>
26 <exclude>META-INF/MANIFEST.MF</exclude>
27 </excludes>
28 </configuration>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.felix</groupId>
32 <artifactId>maven-bundle-plugin</artifactId>
33 <configuration>
34 <instructions>
35 <Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
36 </instructions>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 </project>