blob: 0271cbba78dd3aff55be020a704d840b7c987153 [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>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000023 <version>1.2.1</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 Escoffier4cb4ff32009-08-14 12:11:19 +000031 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier65fd7342008-04-07 13:29:34 +000032 <packaging>pom</packaging>
Clement Escoffier317d2dc2009-06-30 07:47:47 +000033
Clement Escoffier88d6b592009-07-17 08:50:13 +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>
42 <module>handler/extender</module>
43 <module>handler/temporal</module>
44 <module>handler/eventadmin</module>
45 <module>handler/whiteboard</module>
46 <module>api</module>
47 <module>online-manipulator</module>
Clement Escoffier14bbbb22010-04-12 06:27:58 +000048 <!-- remove junit4osgi during the release process
49 <module>junit4osgi</module> -->
Clement Escoffier88d6b592009-07-17 08:50:13 +000050 </modules>
Clement Escoffier317d2dc2009-06-30 07:47:47 +000051
52
Clement Escoffier65fd7342008-04-07 13:29:34 +000053 <profiles>
Clement Escoffier88d6b592009-07-17 08:50:13 +000054 <profile>
55 <id>java5</id>
56 <activation>
57 <jdk>1.5</jdk>
58 </activation>
59 <modules>
60 <module>annotations</module>
61 <module>handler/jmx</module>
62 <module>webconsole-plugin</module>
Clement Escoffiere02de852009-07-19 17:00:33 +000063 <module>handler/transaction</module>
Clement Escoffier88d6b592009-07-17 08:50:13 +000064 </modules>
65 </profile>
66 <profile>
67 <id>java6</id>
68 <activation>
69 <jdk>1.6</jdk>
70 </activation>
71 <modules>
72 <module>annotations</module>
73 <module>handler/jmx</module>
74 <module>webconsole-plugin</module>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000075 <!--<module>handler/transaction</module>-->
Clement Escoffier88d6b592009-07-17 08:50:13 +000076 </modules>
77 </profile>
78 <profile>
79 <id>examples</id>
80 <modules>
81 <module>examples</module>
82 </modules>
83 </profile>
84 <profile>
85 <id>tests</id>
86 <modules>
87 <module>tests</module>
88 </modules>
89 </profile>
Clement Escoffiere50ede52008-03-28 15:33:36 +000090 </profiles>
Clement Escoffier317d2dc2009-06-30 07:47:47 +000091
Clement Escoffierb8fe1372008-11-20 15:51:56 +000092 <build>
93 <plugins>
94 <plugin>
95 <groupId>org.codehaus.mojo</groupId>
96 <artifactId>rat-maven-plugin</artifactId>
97 <version>1.0-alpha-3</version>
98 <configuration>
Clement Escoffier88d6b592009-07-17 08:50:13 +000099 <excludeSubProjects>true</excludeSubProjects>
100 <excludes>
101 <param>**/*</param>
102 </excludes>
Clement Escoffierb8fe1372008-11-20 15:51:56 +0000103 </configuration>
104 </plugin>
105 </plugins>
106 </build>
107
Clement Escoffier317d2dc2009-06-30 07:47:47 +0000108
Clement Escoffier00623482008-08-17 16:09:48 +0000109 <reporting>
110 <plugins>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-javadoc-plugin</artifactId>
114 <configuration>
115 <aggregate>true</aggregate>
Clement Escoffier83507512008-10-13 07:33:03 +0000116 <show>private</show>
Clement Escoffier00623482008-08-17 16:09:48 +0000117 </configuration>
118 </plugin>
119 </plugins>
120 </reporting>
121
Clement Escoffiere50ede52008-03-28 15:33:36 +0000122</project>