blob: eec1ee2b2254ebc56031b4406a9628b66b99b515 [file] [log] [blame]
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Clement Escoffier4a12e332008-04-07 13:29:34 +000019<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
Clement Escoffiere2591592009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000024 <relativePath>../pom/pom.xml</relativePath>
Clement Escoffier4a12e332008-04-07 13:29:34 +000025 </parent>
26
27 <modelVersion>4.0.0</modelVersion>
28 <artifactId>iPOJO</artifactId>
29 <groupId>org.apache.felix</groupId>
30 <name>Apache Felix iPOJO</name>
Clement Escoffier63b3e802009-02-09 10:59:30 +000031 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier4a12e332008-04-07 13:29:34 +000032 <packaging>pom</packaging>
Clement Escoffierd638a4c2009-06-30 07:47:47 +000033
Clement Escoffier4a12e332008-04-07 13:29:34 +000034 <modules>
35 <module>metadata</module>
36 <module>manipulator</module>
37 <module>plugin</module>
38 <module>core</module>
39 <module>composite</module>
40 <module>arch</module>
41 <module>ant</module>
Clement Escoffier308df152008-07-24 08:23:17 +000042 <module>handler/extender</module>
43 <module>handler/temporal</module>
44 <module>handler/eventadmin</module>
45 <module>handler/whiteboard</module>
Clement Escoffier36940f92009-07-07 07:22:28 +000046 <!-- <module>handler/transaction</module> -->
Clement Escoffier63b3e802009-02-09 10:59:30 +000047 <module>api</module>
Clement Escoffier821ad052009-04-22 10:08:45 +000048 <module>online-manipulator</module>
Clement Escoffier36940f92009-07-07 07:22:28 +000049 <!-- <module>junit4osgi</module> -->
Clement Escoffier4a12e332008-04-07 13:29:34 +000050 </modules>
Clement Escoffierd638a4c2009-06-30 07:47:47 +000051
52
Clement Escoffier4a12e332008-04-07 13:29:34 +000053 <profiles>
54 <profile>
55 <id>java5</id>
56 <activation>
57 <jdk>1.5</jdk>
58 </activation>
59 <modules>
60 <module>annotations</module>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000061 <module>handler/jmx</module>
Clement Escoffierd638a4c2009-06-30 07:47:47 +000062 <module>webconsole-plugin</module>
Clement Escoffier4a12e332008-04-07 13:29:34 +000063 </modules>
64 </profile>
65 <profile>
66 <id>java6</id>
67 <activation>
68 <jdk>1.6</jdk>
69 </activation>
70 <modules>
71 <module>annotations</module>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000072 <module>handler/jmx</module>
Clement Escoffierd638a4c2009-06-30 07:47:47 +000073 <module>webconsole-plugin</module>
Clement Escoffier4a12e332008-04-07 13:29:34 +000074 </modules>
75 </profile>
76 <profile>
77 <id>examples</id>
78 <modules>
79 <module>examples</module>
80 </modules>
81 </profile>
82 <profile>
83 <id>tests</id>
84 <modules>
85 <module>tests</module>
86 </modules>
87 </profile>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000088 </profiles>
Clement Escoffierd638a4c2009-06-30 07:47:47 +000089
Clement Escoffier31f25df2008-11-20 15:51:56 +000090 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.codehaus.mojo</groupId>
94 <artifactId>rat-maven-plugin</artifactId>
95 <version>1.0-alpha-3</version>
96 <configuration>
97 <excludeSubProjects>true</excludeSubProjects>
98 <excludes>
99 <param>**/*</param>
100 </excludes>
101 </configuration>
102 </plugin>
103 </plugins>
104 </build>
105
Clement Escoffierd638a4c2009-06-30 07:47:47 +0000106
Clement Escoffierbbab55d2008-08-17 16:09:48 +0000107 <reporting>
108 <plugins>
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-javadoc-plugin</artifactId>
112 <configuration>
113 <aggregate>true</aggregate>
Clement Escoffier130ca572008-10-13 07:33:03 +0000114 <show>private</show>
Clement Escoffierbbab55d2008-08-17 16:09:48 +0000115 </configuration>
116 </plugin>
117 </plugins>
118 </reporting>
119
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000120</project>