]> git.argeo.org Git - lgpl/argeo-commons.git/blob - basic/runtime/pom.xml
Deactivate encryption tests
[lgpl/argeo-commons.git] / basic / runtime / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons</groupId>
6 <version>0.3.4-SNAPSHOT</version>
7 <artifactId>basic</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.commons.basic</groupId>
11 <artifactId>runtime</artifactId>
12 <name>Commons Basic Runtime</name>
13 <packaging>pom</packaging>
14 <modules>
15 <module>org.argeo.basic.nodeps</module>
16 <module>org.argeo.support.junit</module>
17 </modules>
18 <build>
19 <resources>
20 <resource>
21 <directory>src/main/resources</directory>
22 </resource>
23 <resource>
24 <directory>.</directory>
25 <includes>
26 <include>META-INF/**</include>
27 </includes>
28 </resource>
29 </resources>
30 <plugins>
31 <plugin>
32 <artifactId>maven-clean-plugin</artifactId>
33 <configuration>
34 <filesets>
35 <fileset>
36 <directory>META-INF</directory>
37 <includes>
38 <include>MANIFEST.MF</include>
39 </includes>
40 </fileset>
41 </filesets>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-jar-plugin</artifactId>
47 <configuration>
48 <archive>
49 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
50 </archive>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-source-plugin</artifactId>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-surefire-plugin</artifactId>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
64 <version>${version.maven-bundle-plugin}</version>
65 <extensions>true</extensions>
66 <configuration>
67 <manifestLocation>META-INF</manifestLocation>
68 <instructions>
69 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
70 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
71 <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
72 <_removeheaders>Bnd-LastModified</_removeheaders>
73 </instructions>
74 </configuration>
75 <executions>
76 <execution>
77 <id>bundle-manifest</id>
78 <phase>process-classes</phase>
79 <goals>
80 <goal>manifest</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
85 </plugins>
86 </build>
87 </project>