blob: f13467d3d743163b256ea0edf7050a4be7ef2567 [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 Escoffier65fd7342008-04-07 13:29:34 +000019<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000022 <artifactId>felix</artifactId>
Carsten Ziegelerb7251fa2008-01-16 07:37:24 +000023 <version>1.0.2</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000024 <relativePath>../pom/pom.xml</relativePath>
Clement Escoffier65fd7342008-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 Escoffier8036bab2008-05-26 18:50:39 +000031 <version>0.9.0-SNAPSHOT</version>
Clement Escoffier65fd7342008-04-07 13:29:34 +000032 <packaging>pom</packaging>
33
34 <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 Escoffier29b170a2008-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 Escoffier65fd7342008-04-07 13:29:34 +000046 </modules>
Clement Escoffier8036bab2008-05-26 18:50:39 +000047
Clement Escoffier65fd7342008-04-07 13:29:34 +000048
49 <profiles>
50 <profile>
51 <id>java5</id>
52 <activation>
53 <jdk>1.5</jdk>
54 </activation>
55 <modules>
56 <module>annotations</module>
Clement Escoffier6ed6c4e2008-08-11 09:55:34 +000057 <module>handler/jmx</module>
Clement Escoffier65fd7342008-04-07 13:29:34 +000058 </modules>
59 </profile>
60 <profile>
61 <id>java6</id>
62 <activation>
63 <jdk>1.6</jdk>
64 </activation>
65 <modules>
66 <module>annotations</module>
Clement Escoffier6ed6c4e2008-08-11 09:55:34 +000067 <module>handler/jmx</module>
Clement Escoffier65fd7342008-04-07 13:29:34 +000068 </modules>
69 </profile>
70 <profile>
71 <id>examples</id>
72 <modules>
73 <module>examples</module>
74 </modules>
75 </profile>
76 <profile>
77 <id>tests</id>
78 <modules>
79 <module>tests</module>
80 </modules>
81 </profile>
Clement Escoffiere50ede52008-03-28 15:33:36 +000082 </profiles>
Clement Escoffier00623482008-08-17 16:09:48 +000083
84 <reporting>
85 <plugins>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-javadoc-plugin</artifactId>
89 <configuration>
90 <aggregate>true</aggregate>
Clement Escoffier83507512008-10-13 07:33:03 +000091 <show>private</show>
Clement Escoffier00623482008-08-17 16:09:48 +000092 </configuration>
93 </plugin>
94 </plugins>
95 </reporting>
96
Clement Escoffiere50ede52008-03-28 15:33:36 +000097</project>