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