]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/pom.xml
e68f347e7c35bf61ccee12114c2b726a4d9a3155
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>argeo-slc</artifactId>
6 <version>1.1.1-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc</groupId>
10 <artifactId>runtime</artifactId>
11 <packaging>pom</packaging>
12 <name>SLC Runtime</name>
13 <modules>
14 <module>org.argeo.slc.specs</module>
15 <module>org.argeo.slc.core</module>
16 <module>org.argeo.slc.unit</module>
17 <module>org.argeo.slc.support.simple</module>
18 <module>org.argeo.slc.support.castor</module>
19 <module>org.argeo.slc.support.activemq</module>
20 <module>org.argeo.slc.support.osgi</module>
21 <module>org.argeo.slc.support.equinox</module>
22 <module>org.argeo.slc.support.hibernate</module>
23 <module>org.argeo.slc.support.ant</module>
24 <module>org.argeo.slc.support.aether</module>
25 <module>org.argeo.slc.support.maven</module>
26 <module>org.argeo.slc.support.jemmy</module>
27 <module>org.argeo.slc.support.jcr</module>
28 <module>org.argeo.slc.server</module>
29 <module>org.argeo.slc.detached</module>
30 <module>org.argeo.slc.detached.launcher</module>
31 <module>org.argeo.slc.launcher</module>
32 <module>org.argeo.slc.lib.detached</module>
33 <module>org.argeo.slc.support.ws.client</module>
34 <module>org.argeo.slc.repo</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 <include>*.properties</include>
46 </includes>
47 <excludes>
48 <exclude>build.properties</exclude>
49 </excludes>
50 </resource>
51 </resources>
52 <plugins>
53 <plugin>
54 <artifactId>maven-clean-plugin</artifactId>
55 <configuration>
56 <filesets>
57 <fileset>
58 <directory>META-INF</directory>
59 <includes>
60 <include>MANIFEST.MF</include>
61 </includes>
62 </fileset>
63 </filesets>
64 </configuration>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-jar-plugin</artifactId>
69 <configuration>
70 <archive>
71 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
72 </archive>
73 </configuration>
74 </plugin>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-source-plugin</artifactId>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-surefire-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-bundle-plugin</artifactId>
86 </plugin>
87 <!-- TO BE DELETED Configuration herited from commons/pom.xml <version>${version.maven-bundle-plugin}</version>
88 <extensions>true</extensions> <configuration> <manifestLocation>META-INF</manifestLocation>
89 <instructions> <Bundle-Version>${version.slc}-r${buildNumber}</Bundle-Version>
90 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
91 <_removeheaders>Bnd-LastModified</_removeheaders> </instructions> </configuration>
92 <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase>
93 <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> -->
94 </plugins>
95 </build>
96 <!-- <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>
97 <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins> </reporting> -->
98 </project>