]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/pom.xml
Restructure SLC development environment
[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.12.2-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc</groupId>
11 <artifactId>runtime</artifactId>
12 <packaging>pom</packaging>
13 <name>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.support.jemmy</module>
28 <module>org.argeo.slc.support.jcr</module>
29 <module>org.argeo.slc.server</module>
30 <module>org.argeo.slc.detached</module>
31 <module>org.argeo.slc.detached.launcher</module>
32 <module>org.argeo.slc.launcher</module>
33 <module>org.argeo.slc.lib.detached</module>
34 <module>org.argeo.slc.support.ws.client</module>
35 </modules>
36 <build>
37 <resources>
38 <resource>
39 <directory>src/main/resources</directory>
40 </resource>
41 <resource>
42 <directory>.</directory>
43 <includes>
44 <include>META-INF/**</include>
45 </includes>
46 </resource>
47 </resources>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-jar-plugin</artifactId>
52 <configuration>
53 <archive>
54 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
55 </archive>
56 </configuration>
57 </plugin>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-source-plugin</artifactId>
61 </plugin>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-surefire-plugin</artifactId>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>maven-bundle-plugin</artifactId>
69 <version>${version.maven-bundle-plugin}</version>
70 <extensions>true</extensions>
71 <configuration>
72 <manifestLocation>META-INF</manifestLocation>
73 <instructions>
74 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
75 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
76 <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
77 <_removeheaders>Bnd-LastModified</_removeheaders>
78 </instructions>
79 </configuration>
80 <executions>
81 <execution>
82 <id>bundle-manifest</id>
83 <phase>process-classes</phase>
84 <goals>
85 <goal>manifest</goal>
86 </goals>
87 </execution>
88 </executions>
89 </plugin>
90 </plugins>
91 </build>
92 <!--
93 <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>
94 <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins>
95 </reporting>
96 -->
97 </project>