]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/pom.xml
Copy as Agent JCR
[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.13.1-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.specs</module>
16 <module>org.argeo.slc.core</module>
17 <module>org.argeo.slc.unit</module>
18 <module>org.argeo.slc.support.simple</module>
19 <module>org.argeo.slc.support.castor</module>
20 <module>org.argeo.slc.support.activemq</module>
21 <module>org.argeo.slc.support.osgi</module>
22 <module>org.argeo.slc.support.equinox</module>
23 <module>org.argeo.slc.support.hibernate</module>
24 <module>org.argeo.slc.support.ant</module>
25 <module>org.argeo.slc.support.aether</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.support.gis</module>
30 <module>org.argeo.slc.server</module>
31 <module>org.argeo.slc.detached</module>
32 <module>org.argeo.slc.detached.launcher</module>
33 <module>org.argeo.slc.launcher</module>
34 <module>org.argeo.slc.lib.detached</module>
35 <module>org.argeo.slc.support.ws.client</module>
36 <module>org.argeo.slc.repo</module>
37 </modules>
38 <build>
39 <resources>
40 <resource>
41 <directory>src/main/resources</directory>
42 </resource>
43 <resource>
44 <directory>.</directory>
45 <includes>
46 <include>META-INF/**</include>
47 </includes>
48 </resource>
49 </resources>
50 <plugins>
51 <plugin>
52 <artifactId>maven-clean-plugin</artifactId>
53 <configuration>
54 <filesets>
55 <fileset>
56 <directory>META-INF</directory>
57 <includes>
58 <include>MANIFEST.MF</include>
59 </includes>
60 </fileset>
61 </filesets>
62 </configuration>
63 </plugin>
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-jar-plugin</artifactId>
67 <configuration>
68 <archive>
69 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
70 </archive>
71 </configuration>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-source-plugin</artifactId>
76 </plugin>
77 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <artifactId>maven-surefire-plugin</artifactId>
80 </plugin>
81 <plugin>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>maven-bundle-plugin</artifactId>
84 </plugin>
85 <!-- TO BE DELETED Configuration herited from commons/pom.xml <version>${version.maven-bundle-plugin}</version>
86 <extensions>true</extensions> <configuration> <manifestLocation>META-INF</manifestLocation>
87 <instructions> <Bundle-Version>${version.slc}-r${buildNumber}</Bundle-Version>
88 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
89 <_removeheaders>Bnd-LastModified</_removeheaders> </instructions> </configuration>
90 <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase>
91 <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> -->
92 </plugins>
93 </build>
94 <!-- <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>
95 <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins> </reporting> -->
96 </project>