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