]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/pom.xml
@update:79; First end-to-end integration test
[gpl/argeo-slc.git] / runtime / 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.slc</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <version>0.11.4-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc</groupId>
11 <artifactId>runtime</artifactId>
12 <packaging>pom</packaging>
13 <name>Argeo SLC Runtime</name>
14 <modules>
15 <module>org.argeo.slc.osgiboot</module>
16 <module>org.argeo.slc.specs</module>
17 <module>org.argeo.slc.support.simple</module>
18 <module>org.argeo.slc.support.castor</module>
19 <module>org.argeo.slc.support.activemq</module>
20 <module>org.argeo.slc.support.ant</module>
21 <module>org.argeo.slc.support.equinox</module>
22 <module>org.argeo.slc.support.hibernate</module>
23 <module>org.argeo.slc.support.maven</module>
24 <module>org.argeo.slc.server</module>
25 <module>org.argeo.slc.detached</module>
26 <module>org.argeo.slc.detached.launcher</module>
27 <module>org.argeo.slc.launcher</module>
28 <module>org.argeo.slc.lib.detached</module>
29 </modules>
30 <build>
31 <pluginManagement>
32 <plugins>
33 <plugin>
34 <artifactId>maven-jar-plugin</artifactId>
35 <configuration>
36 <archive>
37 <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
38 </archive>
39 </configuration>
40 </plugin>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
44 <version>${version.maven-bundle-plugin}</version>
45 <extensions>true</extensions>
46 <configuration>
47 <manifestLocation>target/classes/META-INF</manifestLocation>
48 <instructions>
49 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
50 <_removeheaders>Bnd-LastModified</_removeheaders>
51 </instructions>
52 </configuration>
53 <executions>
54 <execution>
55 <id>bundle-manifest</id>
56 <phase>process-classes</phase>
57 <goals>
58 <goal>manifest</goal>
59 </goals>
60 </execution>
61 </executions>
62 </plugin>
63 </plugins>
64 </pluginManagement>
65 </build>
66 <!--
67 <reporting>
68 <plugins>
69 <plugin>
70 <groupId>org.codehaus.mojo</groupId>
71 <artifactId>cobertura-maven-plugin</artifactId>
72 </plugin>
73 </plugins>
74 </reporting>
75 -->
76 </project>