]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/pom.xml
Restructure SLC
[gpl/argeo-slc.git] / plugins / 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.3-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 <resources>
20 <resource>
21 <directory>.</directory>
22 <includes>
23 <include>plugin.xml</include>
24 <include>META-INF/**</include>
25 <include>icons/**</include>
26 </includes>
27 </resource>
28 </resources>
29 <plugins>
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>