]> git.argeo.org Git - lgpl/argeo-commons.git/blob - demo/plugins/pom.xml
Deactivate encryption tests
[lgpl/argeo-commons.git] / demo / 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>0.3.4-SNAPSHOT</version>
7 <artifactId>demo</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.commons.demo</groupId>
11 <artifactId>plugins</artifactId>
12 <name>Commons Demo Eclipse Plugins</name>
13 <packaging>pom</packaging>
14 <modules>
15 <module>org.argeo.demo.i18n</module>
16 <module>org.argeo.demo.i18n.rap</module>
17 <module>org.argeo.demo.i18n.rcp</module>
18 </modules>
19 <build>
20 <resources>
21 <resource>
22 <directory>src/main/resources</directory>
23 </resource>
24 <resource>
25 <directory>.</directory>
26 <includes>
27 <include>plugin.xml</include>
28 <include>META-INF/**</include>
29 <include>icons/**</include>
30 </includes>
31 </resource>
32 </resources>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-jar-plugin</artifactId>
37 </plugin>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-source-plugin</artifactId>
41 <configuration>
42 <!-- Prevents source jars to contain misleading data -->
43 <excludes>
44 <exclude>plugin.xml</exclude>
45 <exclude>META-INF/MANIFEST.MF</exclude>
46 </excludes>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-surefire-plugin</artifactId>
52 </plugin>
53 </plugins>
54 </build>
55 </project>