blob: e2ba07cf0cde24e57409c14989733dae9da6f8f6 [file] [log] [blame]
Clement Escoffiera4142112008-03-29 15:04:02 +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
Clement Escoffiere50ede52008-03-28 15:33:36 +00009
Clement Escoffiera4142112008-03-29 15:04:02 +000010 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 Escoffierf4622e52010-05-01 10:21:51 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Clement Escoffiere50ede52008-03-28 15:33:36 +000021 <modelVersion>4.0.0</modelVersion>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000024 <version>1.5.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000025 <name>Apache Felix iPOJO Tests</name>
26 <packaging>pom</packaging>
Clement Escoffierf4622e52010-05-01 10:21:51 +000027
28 <repositories>
Clement Escoffier9d4939c2010-05-08 07:34:42 +000029 <repository>
30 <releases>
31 <enabled>false</enabled>
32 </releases>
33 <id>ow2.snapshots</id>
34 <name>OW2 Snapshot Repository</name>
35 <url>http://maven.ow2.org/maven2-snapshot/</url>
36 </repository>
Clement Escoffierf4622e52010-05-01 10:21:51 +000037 </repositories>
38
39 <dependencyManagement>
Clement Escoffier9d4939c2010-05-08 07:34:42 +000040 <dependencies>
41 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.core</artifactId>
44 <version>4.2.0</version>
45 </dependency>
46 <dependency>
47 <groupId>org.osgi</groupId>
48 <artifactId>org.osgi.compendium</artifactId>
49 <version>4.2.0</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.apache.felix.ipojo</artifactId>
54 <version>1.6.0</version>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
59 <version>1.6.0</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.ipojo.api</artifactId>
64 <version>1.6.0</version>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.ipojo.composite</artifactId>
69 <version>1.6.0</version>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
74 <version>1.6.0</version>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId>
79 <version>1.4.0</version>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
84 <version>1.4.0</version>
85 </dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +000086
Clement Escoffier9d4939c2010-05-08 07:34:42 +000087 <dependency>
88 <groupId>org.ow2.chameleon.testing</groupId>
89 <artifactId>tinybundles-ipojo</artifactId>
Clement Escoffier253ed742010-05-12 08:01:59 +000090 <version>0.2.0</version>
Clement Escoffier9d4939c2010-05-08 07:34:42 +000091 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.ow2.chameleon.testing</groupId>
95 <artifactId>osgi-helpers</artifactId>
96 <version>0.2.0</version>
97 <scope>test</scope>
98 </dependency>
99 </dependencies>
Clement Escoffierf4622e52010-05-01 10:21:51 +0000100 </dependencyManagement>
101
Clement Escoffier832ab7a2008-04-25 16:49:43 +0000102 <modules>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +0000103 <module>manipulator/manipulation</module>
104 <module>manipulator/metadata</module>
105 <module>manipulator/primitives</module>
106 <module>manipulator/creation</module>
Clement Escoffierba784c12009-07-17 11:22:36 +0000107 <module>core/factories</module>
108 <module>core/lifecycle-controller</module>
109 <module>core/service-providing</module>
110 <module>core/lifecycle-callback</module>
111 <module>core/service-dependency</module>
112 <module>core/service-dependency-bindingpolicy</module>
113 <module>core/service-dependency-filter</module>
114 <module>core/service-dependency-comparator</module>
115 <module>core/service-providing-strategies</module>
Clement Escoffier2475aee2009-11-07 08:56:40 +0000116 <module>core/service-providing-inheritance</module>
Clement Escoffierc6673552010-02-21 09:44:38 +0000117 <module>core/service-dependency-optional</module>
Clement Escoffierba784c12009-07-17 11:22:36 +0000118 <module>core/configuration</module>
119 <module>core/handler</module>
120 <module>core/external-handlers</module>
121 <module>core/bad-configurations</module>
Clement Escoffierca106e42009-08-27 11:45:53 +0000122 <module>core/logger</module>
Clement Escoffierc6673552010-02-21 09:44:38 +0000123 <module>core/factory-version</module>
Clement Escoffierba784c12009-07-17 11:22:36 +0000124 <module>composite/composite-runtime</module>
125 <module>composite/import-export</module>
126 <module>composite/service-instance</module>
127 <module>composite/service-providing</module>
128 <module>handler/temporal</module>
129 <module>handler/whiteboard</module>
130 <module>handler/eventadmin</module>
131 <module>core/configadmin</module>
132 <module>api</module>
133 <module>online-manipulator</module>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +0000134 </modules>
135
Clement Escoffierf4622e52010-05-01 10:21:51 +0000136 <build>
Clement Escoffier9d4939c2010-05-08 07:34:42 +0000137 <pluginManagement>
138 <plugins>
139 <plugin>
140 <groupId>org.apache.felix</groupId>
141 <artifactId>maven-ipojo-plugin</artifactId>
142 <version>1.6.0</version>
143 </plugin>
144 <plugin>
145 <groupId>org.apache.felix</groupId>
146 <artifactId>maven-bundle-plugin</artifactId>
147 <version>2.0.1</version>
148 </plugin>
149 </plugins>
150 </pluginManagement>
Clement Escoffierf4622e52010-05-01 10:21:51 +0000151 </build>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +0000152 <profiles>
153 <profile>
154 <id>java5</id>
155 <activation>
156 <jdk>1.5</jdk>
157 </activation>
158 <modules>
Clement Escoffier9d4939c2010-05-08 07:34:42 +0000159 <!--
160 Remove bundleAsiPOJO - Deprecated
Clement Escoffier4cb4ff32009-08-14 12:11:19 +0000161 <module>bundleAsiPOJO</module>
Clement Escoffier9d4939c2010-05-08 07:34:42 +0000162 -->
Clement Escoffier4cb4ff32009-08-14 12:11:19 +0000163 <module>core/annotations</module>
164 <module>manipulator/manipulator-java5
165 </module>
166 <module>handler/transaction</module>
167 </modules>
168 </profile>
169 <profile>
170 <id>java6</id>
171 <activation>
172 <jdk>1.6</jdk>
173 </activation>
174 <modules>
Clement Escoffier9d4939c2010-05-08 07:34:42 +0000175 <!--
176 Remove bundleAsiPOJO - Deprecated
Clement Escoffier4cb4ff32009-08-14 12:11:19 +0000177 <module>bundleAsiPOJO</module>
Clement Escoffier9d4939c2010-05-08 07:34:42 +0000178 -->
Clement Escoffier4cb4ff32009-08-14 12:11:19 +0000179 <module>core/annotations</module>
180 <module>manipulator/manipulator-java5
181 </module>
182 <module>handler/transaction</module>
183 </modules>
184 </profile>
185
186 <profile>
187 <id>integration-tests</id>
188 <modules>
189 <module>integration-tests</module>
190 </modules>
191 </profile>
Clement Escoffiercdb4b172008-04-29 22:25:39 +0000192 </profiles>
Clement Escoffierf4622e52010-05-01 10:21:51 +0000193
Clement Escoffierba784c12009-07-17 11:22:36 +0000194</project>