]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
c3114416b7228ff5aca4970a9dbcd749b1a1c7e8
[gpl/argeo-slc.git] / 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.support.gis</module>
30 <module>org.argeo.slc.server</module>
31 <module>org.argeo.slc.detached</module>
32 <module>org.argeo.slc.detached.launcher</module>
33 <module>org.argeo.slc.launcher</module>
34 <module>org.argeo.slc.lib.detached</module>
35 <module>org.argeo.slc.support.ws.client</module>
36 </modules>
37 <build>
38 <resources>
39 <resource>
40 <directory>src/main/resources</directory>
41 </resource>
42 <resource>
43 <directory>.</directory>
44 <includes>
45 <include>META-INF/**</include>
46 </includes>
47 </resource>
48 </resources>
49 <plugins>
50 <plugin>
51 <artifactId>maven-clean-plugin</artifactId>
52 <configuration>
53 <filesets>
54 <fileset>
55 <directory>META-INF</directory>
56 <includes>
57 <include>MANIFEST.MF</include>
58 </includes>
59 </fileset>
60 </filesets>
61 </configuration>
62 </plugin>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-jar-plugin</artifactId>
66 <configuration>
67 <archive>
68 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
69 </archive>
70 </configuration>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-source-plugin</artifactId>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-surefire-plugin</artifactId>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-bundle-plugin</artifactId>
83 <version>${version.maven-bundle-plugin}</version>
84 <extensions>true</extensions>
85 <configuration>
86 <manifestLocation>META-INF</manifestLocation>
87 <instructions>
88 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
89 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
90 <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
91 <_removeheaders>Bnd-LastModified</_removeheaders>
92 </instructions>
93 </configuration>
94 <executions>
95 <execution>
96 <id>bundle-manifest</id>
97 <phase>process-classes</phase>
98 <goals>
99 <goal>manifest</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105 </build>
106 <!--
107 <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>
108 <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins>
109 </reporting>
110 -->
111 </project>