]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/pom.xml
Add a meta bundle for SLC to be used with RAP
[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.13.1-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.specs</module>
15 <module>org.argeo.slc.core</module>
16 <module>org.argeo.slc.unit</module>
17 <module>org.argeo.slc.support.simple</module>
18 <module>org.argeo.slc.support.castor</module>
19 <module>org.argeo.slc.support.activemq</module>
20 <module>org.argeo.slc.support.osgi</module>
21 <module>org.argeo.slc.support.equinox</module>
22 <module>org.argeo.slc.support.hibernate</module>
23 <module>org.argeo.slc.support.ant</module>
24 <module>org.argeo.slc.support.maven</module>
25 <module>org.argeo.slc.support.jemmy</module>
26 <module>org.argeo.slc.support.jcr</module>
27 <module>org.argeo.slc.support.gis</module>
28 <module>org.argeo.slc.server</module>
29 <module>org.argeo.slc.detached</module>
30 <module>org.argeo.slc.detached.launcher</module>
31 <module>org.argeo.slc.launcher</module>
32 <module>org.argeo.slc.lib.detached</module>
33 <module>org.argeo.slc.support.ws.client</module>
34 </modules>
35 <build>
36 <resources>
37 <resource>
38 <directory>src/main/resources</directory>
39 </resource>
40 <resource>
41 <directory>.</directory>
42 <includes>
43 <include>META-INF/**</include>
44 </includes>
45 </resource>
46 </resources>
47 <plugins>
48 <plugin>
49 <artifactId>maven-clean-plugin</artifactId>
50 <configuration>
51 <filesets>
52 <fileset>
53 <directory>META-INF</directory>
54 <includes>
55 <include>MANIFEST.MF</include>
56 </includes>
57 </fileset>
58 </filesets>
59 </configuration>
60 </plugin>
61 <!--
62 <plugin>
63 <artifactId>maven-compiler-plugin</artifactId>
64 <version>2.3.2</version>
65 <configuration>
66 <compilerId>eclipse</compilerId>
67 </configuration>
68 <dependencies>
69 <dependency>
70 <groupId>org.codehaus.plexus</groupId>
71 <artifactId>plexus-compiler-eclipse</artifactId>
72 <version>1.8.1</version>
73 </dependency>
74 </dependencies>
75 </plugin>
76 -->
77 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <artifactId>maven-jar-plugin</artifactId>
80 <configuration>
81 <archive>
82 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
83 </archive>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-source-plugin</artifactId>
89 </plugin>
90 <plugin>
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-surefire-plugin</artifactId>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-bundle-plugin</artifactId>
97 <version>${version.maven-bundle-plugin}</version>
98 <extensions>true</extensions>
99 <configuration>
100 <manifestLocation>META-INF</manifestLocation>
101 <instructions>
102 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
103 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
104 <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
105 <_removeheaders>Bnd-LastModified</_removeheaders>
106 </instructions>
107 </configuration>
108 <executions>
109 <execution>
110 <id>bundle-manifest</id>
111 <phase>process-classes</phase>
112 <goals>
113 <goal>manifest</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
118 </plugins>
119 </build>
120 <!--
121 <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>
122 <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins>
123 </reporting>
124 -->
125 </project>