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