]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/pom.xml
Rename RAP
[lgpl/argeo-commons.git] / server / runtime / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons</groupId>
6 <version>0.2.3-SNAPSHOT</version>
7 <artifactId>server</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.commons.server</groupId>
11 <artifactId>runtime</artifactId>
12 <name>Commons Server Runtime</name>
13 <packaging>pom</packaging>
14 <modules>
15 <module>org.argeo.server.core</module>
16 <module>org.argeo.server.json</module>
17 <module>org.argeo.server.webextender</module>
18 <module>org.argeo.server.jxl</module>
19 <module>org.argeo.server.hibernate</module>
20 <module>org.argeo.server.ads</module>
21 <module>org.argeo.server.jcr</module>
22 <module>org.argeo.server.jcr.mvc</module>
23 <module>org.argeo.server.jackrabbit</module>
24 <module>org.argeo.server.modeshape</module>
25 </modules>
26 <build>
27 <resources>
28 <resource>
29 <directory>src/main/resources</directory>
30 </resource>
31 <resource>
32 <directory>.</directory>
33 <includes>
34 <include>META-INF/**</include>
35 </includes>
36 </resource>
37 </resources>
38 <plugins>
39 <plugin>
40 <artifactId>maven-clean-plugin</artifactId>
41 <configuration>
42 <filesets>
43 <fileset>
44 <directory>META-INF</directory>
45 <includes>
46 <include>MANIFEST.MF</include>
47 </includes>
48 </fileset>
49 </filesets>
50 </configuration>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-jar-plugin</artifactId>
55 <configuration>
56 <archive>
57 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
58 </archive>
59 </configuration>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-source-plugin</artifactId>
64 </plugin>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-surefire-plugin</artifactId>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
72 <version>${version.maven-bundle-plugin}</version>
73 <extensions>true</extensions>
74 <configuration>
75 <manifestLocation>META-INF</manifestLocation>
76 <instructions>
77 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
78 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
79 <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
80 <_removeheaders>Bnd-LastModified</_removeheaders>
81 </instructions>
82 </configuration>
83 <executions>
84 <execution>
85 <id>bundle-manifest</id>
86 <phase>process-classes</phase>
87 <goals>
88 <goal>manifest</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93 </plugins>
94 </build>
95 </project>