]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/pom.xml
Add use case for refs
[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.core</module>
18 <module>org.argeo.slc.unit</module>
19 <module>org.argeo.slc.support.simple</module>
20 <module>org.argeo.slc.support.castor</module>
21 <module>org.argeo.slc.support.activemq</module>
22 <module>org.argeo.slc.support.osgi</module>
23 <module>org.argeo.slc.support.equinox</module>
24 <module>org.argeo.slc.support.hibernate</module>
25 <module>org.argeo.slc.support.ant</module>
26 <module>org.argeo.slc.support.maven</module>
27 <module>org.argeo.slc.server</module>
28 <module>org.argeo.slc.detached</module>
29 <module>org.argeo.slc.detached.launcher</module>
30 <module>org.argeo.slc.launcher</module>
31 <module>org.argeo.slc.lib.detached</module>
32 </modules>
33 <build>
34 <pluginManagement>
35 <plugins>
36 <plugin>
37 <artifactId>maven-jar-plugin</artifactId>
38 <configuration>
39 <archive>
40 <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
41 </archive>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <version>${version.maven-bundle-plugin}</version>
48 <extensions>true</extensions>
49 <configuration>
50 <manifestLocation>target/classes/META-INF</manifestLocation>
51 <instructions>
52 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
53 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
54 <_removeheaders>Bnd-LastModified</_removeheaders>
55 </instructions>
56 </configuration>
57 <executions>
58 <execution>
59 <id>bundle-manifest</id>
60 <phase>process-classes</phase>
61 <goals>
62 <goal>manifest</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 </plugins>
68 </pluginManagement>
69 </build>
70 <!--
71 <profiles>
72 <profile>
73 <id>release</id>
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
79 <version>${version.maven-bundle-plugin}</version>
80 <extensions>true</extensions>
81 <configuration>
82 <manifestLocation>target/classes/META-INF</manifestLocation>
83 <instructions>
84 <Bundle-Version>${project.version}.r${buildNumber}</Bundle-Version>
85 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
86 <_removeheaders>Bnd-LastModified</_removeheaders>
87 </instructions>
88 </configuration>
89 <executions>
90 <execution>
91 <id>bundle-manifest</id>
92 <phase>process-classes</phase>
93 <goals>
94 <goal>manifest</goal>
95 </goals>
96 </execution>
97 </executions>
98 </plugin>
99 </plugins>
100 </build>
101 </profile>
102 </profiles> -->
103 <!--
104 <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>
105 <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins>
106 </reporting>
107 -->
108 </project>