]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/pom.xml
Move package
[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.osgi</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.jackrabbit</module>
23 <module>org.argeo.server.modeshape</module>
24 </modules>
25 <build>
26 <resources>
27 <resource>
28 <directory>src/main/resources</directory>
29 </resource>
30 <resource>
31 <directory>.</directory>
32 <includes>
33 <include>META-INF/**</include>
34 </includes>
35 </resource>
36 </resources>
37 <plugins>
38 <plugin>
39 <artifactId>maven-clean-plugin</artifactId>
40 <configuration>
41 <filesets>
42 <fileset>
43 <directory>META-INF</directory>
44 <includes>
45 <include>MANIFEST.MF</include>
46 </includes>
47 </fileset>
48 </filesets>
49 </configuration>
50 </plugin>
51 <plugin>
52 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-jar-plugin</artifactId>
54 <configuration>
55 <archive>
56 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
57 </archive>
58 </configuration>
59 </plugin>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-source-plugin</artifactId>
63 </plugin>
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-surefire-plugin</artifactId>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
71 <version>${version.maven-bundle-plugin}</version>
72 <extensions>true</extensions>
73 <configuration>
74 <manifestLocation>META-INF</manifestLocation>
75 <instructions>
76 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
77 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
78 <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
79 <_removeheaders>Bnd-LastModified</_removeheaders>
80 </instructions>
81 </configuration>
82 <executions>
83 <execution>
84 <id>bundle-manifest</id>
85 <phase>process-classes</phase>
86 <goals>
87 <goal>manifest</goal>
88 </goals>
89 </execution>
90 </executions>
91 </plugin>
92 </plugins>
93 </build>
94 </project>