blob: 54242e2a6ae0ed47380b6bbf72d4611e6b197603 [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 Escoffierce123392009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</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 Escoffier5c6a6a32009-02-09 10:59:30 +000031 <version>1.3.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 Escoffier5c6a6a32009-02-09 10:59:30 +000046 <module>api</module>
Clement Escoffier1aabcb22009-04-22 10:08:45 +000047 <module>online-manipulator</module>
Clement Escoffiera17def32009-02-16 10:35:15 +000048 <module>junit4osgi</module>
Clement Escoffier65fd7342008-04-07 13:29:34 +000049 </modules>
Clement Escoffier8036bab2008-05-26 18:50:39 +000050
Clement Escoffier65fd7342008-04-07 13:29:34 +000051
52 <profiles>
53 <profile>
54 <id>java5</id>
55 <activation>
56 <jdk>1.5</jdk>
57 </activation>
58 <modules>
59 <module>annotations</module>
Clement Escoffier6ed6c4e2008-08-11 09:55:34 +000060 <module>handler/jmx</module>
Clement Escoffier65fd7342008-04-07 13:29:34 +000061 </modules>
62 </profile>
63 <profile>
64 <id>java6</id>
65 <activation>
66 <jdk>1.6</jdk>
67 </activation>
68 <modules>
69 <module>annotations</module>
Clement Escoffier6ed6c4e2008-08-11 09:55:34 +000070 <module>handler/jmx</module>
Clement Escoffier65fd7342008-04-07 13:29:34 +000071 </modules>
72 </profile>
73 <profile>
74 <id>examples</id>
75 <modules>
76 <module>examples</module>
77 </modules>
78 </profile>
79 <profile>
80 <id>tests</id>
81 <modules>
82 <module>tests</module>
83 </modules>
84 </profile>
Clement Escoffiere50ede52008-03-28 15:33:36 +000085 </profiles>
Clement Escoffier00623482008-08-17 16:09:48 +000086
Clement Escoffierb8fe1372008-11-20 15:51:56 +000087 <build>
88 <plugins>
89 <plugin>
90 <groupId>org.codehaus.mojo</groupId>
91 <artifactId>rat-maven-plugin</artifactId>
92 <version>1.0-alpha-3</version>
93 <configuration>
94 <excludeSubProjects>true</excludeSubProjects>
95 <excludes>
96 <param>**/*</param>
97 </excludes>
98 </configuration>
99 </plugin>
100 </plugins>
101 </build>
102
103
Clement Escoffier00623482008-08-17 16:09:48 +0000104 <reporting>
105 <plugins>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-javadoc-plugin</artifactId>
109 <configuration>
110 <aggregate>true</aggregate>
Clement Escoffier83507512008-10-13 07:33:03 +0000111 <show>private</show>
Clement Escoffier00623482008-08-17 16:09:48 +0000112 </configuration>
113 </plugin>
114 </plugins>
115 </reporting>
116
Clement Escoffiere50ede52008-03-28 15:33:36 +0000117</project>