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