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