blob: 6fd1c152f0e026b2a07071c5a7a1aefeeea6659e [file] [log] [blame]
Clement Escoffier95358cb2011-08-18 11:36:08 +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-->
19<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">
21 <modelVersion>4.0.0</modelVersion>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 <name>Apache Felix iPOJO Tests</name>
26 <packaging>pom</packaging>
27
28 <repositories>
29 <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>
Guillaume Sauthierc8fb9752013-01-09 11:01:40 +000037
38 <repository>
39 <id>apache.snapshots</id>
40 <name>snapshot plugins</name>
41 <url>http://repository.apache.org/snapshots</url>
42 <releases>
43 <enabled>false</enabled>
44 </releases>
45 <snapshots>
46 <enabled>true</enabled>
47 </snapshots>
48 </repository>
Clement Escoffier95358cb2011-08-18 11:36:08 +000049 </repositories>
50
Guillaume Sauthierc8fb9752013-01-09 11:01:40 +000051 <pluginRepositories>
52 <pluginRepository>
53 <id>apache.plugins.snapshots</id>
54 <name>snapshot plugins</name>
55 <url>http://repository.apache.org/snapshots</url>
56 <releases>
57 <enabled>false</enabled>
58 </releases>
59 <snapshots>
60 <enabled>true</enabled>
61 </snapshots>
62 </pluginRepository>
63 </pluginRepositories>
Clement Escoffier95358cb2011-08-18 11:36:08 +000064
65 <properties>
Clement Escoffier6d66fa92012-10-28 14:29:10 +000066 <ipojo.core.release>1.8.2</ipojo.core.release>
Clement Escoffier95358cb2011-08-18 11:36:08 +000067 <ipojo.core.snapshot>1.9.0-SNAPSHOT</ipojo.core.snapshot>
68
69 <ipojo.api.release>1.6.0</ipojo.api.release>
70 <ipojo.api.snapshot>1.7.0-SNAPSHOT</ipojo.api.snapshot>
71
Clement Escoffier6d66fa92012-10-28 14:29:10 +000072 <ipojo.composite.release>1.8.2</ipojo.composite.release>
Clement Escoffier95358cb2011-08-18 11:36:08 +000073 <ipojo.composite.snapshot>1.9.0-SNAPSHOT</ipojo.composite.snapshot>
74
75 <ipojo.eah.release>1.6.0</ipojo.eah.release>
76 <ipojo.eah.snapshot>1.9.0-SNAPSHOT</ipojo.eah.snapshot>
77 <ipojo.temporal.snapshot>1.7.0-SNAPSHOT</ipojo.temporal.snapshot>
78 <ipojo.wbp.snapshot>1.6.1-SNAPSHOT</ipojo.wbp.snapshot>
Clement Escoffier6d66fa92012-10-28 14:29:10 +000079
80 <ipojo.manipulator.release>1.8.6</ipojo.manipulator.release>
81 <ipojo.manipulator.snapshot>1.9.0-SNAPSHOT</ipojo.manipulator.snapshot>
Clement Escoffier95358cb2011-08-18 11:36:08 +000082 </properties>
83
84 <dependencyManagement>
85 <dependencies>
86 <dependency>
87 <groupId>org.osgi</groupId>
88 <artifactId>org.osgi.core</artifactId>
89 <version>4.2.0</version>
90 </dependency>
91 <dependency>
92 <groupId>org.osgi</groupId>
93 <artifactId>org.osgi.compendium</artifactId>
94 <version>4.2.0</version>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier621f3742012-04-21 11:03:41 +000099 <version>${ipojo.core.snapshot}</version>
Clement Escoffier95358cb2011-08-18 11:36:08 +0000100 </dependency>
101 <dependency>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffier621f3742012-04-21 11:03:41 +0000104 <version>${ipojo.core.snapshot}</version>
Clement Escoffier95358cb2011-08-18 11:36:08 +0000105 </dependency>
106 <dependency>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>org.apache.felix.ipojo.api</artifactId>
109 <version>${ipojo.api.release}</version>
110 </dependency>
111 <dependency>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier621f3742012-04-21 11:03:41 +0000114 <version>${ipojo.composite.snapshot}</version>
Clement Escoffier95358cb2011-08-18 11:36:08 +0000115 </dependency>
116 <dependency>
117 <groupId>org.apache.felix</groupId>
118 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffierbf943982012-11-08 09:01:23 +0000119 <version>${ipojo.manipulator.release}</version>
Clement Escoffier95358cb2011-08-18 11:36:08 +0000120 </dependency>
121 <dependency>
122 <groupId>org.apache.felix</groupId>
123 <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId>
124 <version>1.4.0</version>
125 </dependency>
126 <dependency>
127 <groupId>org.apache.felix</groupId>
128 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
129 <version>1.4.0</version>
130 </dependency>
131
132 <dependency>
133 <groupId>org.ow2.chameleon.testing</groupId>
134 <artifactId>tinybundles-ipojo</artifactId>
135 <version>0.2.0</version>
136 <scope>test</scope>
137 </dependency>
138 <dependency>
139 <groupId>org.ow2.chameleon.testing</groupId>
140 <artifactId>osgi-helpers</artifactId>
141 <version>0.2.0</version>
142 <scope>test</scope>
143 </dependency>
144 </dependencies>
145 </dependencyManagement>
146
147 <modules>
148 <module>manipulator/manipulation</module>
149 <module>manipulator/metadata</module>
150 <module>manipulator/primitives</module>
151 <module>manipulator/creation</module>
152 <module>core/factories</module>
153 <module>core/lifecycle-controller</module>
154 <module>core/service-providing</module>
155 <module>core/lifecycle-callback</module>
156 <module>core/service-dependency</module>
157 <module>core/service-dependency-bindingpolicy</module>
158 <module>core/service-dependency-filter</module>
159 <module>core/service-dependency-comparator</module>
160 <module>core/service-providing-strategies</module>
161 <module>core/service-providing-inheritance</module>
162 <module>core/service-dependency-optional</module>
163 <module>core/configuration</module>
164 <module>core/handler</module>
165 <module>core/external-handlers</module>
166 <module>core/bad-configurations</module>
167 <module>core/logger</module>
168 <module>core/factory-version</module>
169 <module>composite/composite-runtime</module>
170 <module>composite/import-export</module>
171 <module>composite/service-instance</module>
172 <module>composite/service-providing</module>
173 <module>handler/temporal</module>
174 <module>handler/whiteboard</module>
175 <module>handler/eventadmin</module>
176 <module>core/configadmin</module>
177 <module>api</module>
178 <module>online-manipulator</module>
179 </modules>
180
181 <build>
182 <pluginManagement>
183 <plugins>
184 <plugin>
185 <groupId>org.apache.felix</groupId>
186 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier6d66fa92012-10-28 14:29:10 +0000187 <version>${ipojo.manipulator.snapshot}</version>
Clement Escoffier95358cb2011-08-18 11:36:08 +0000188 </plugin>
189 <plugin>
190 <groupId>org.apache.felix</groupId>
191 <artifactId>maven-bundle-plugin</artifactId>
192 <version>2.0.1</version>
193 </plugin>
194 </plugins>
195 </pluginManagement>
196 </build>
197 <profiles>
198 <profile>
199 <id>java5</id>
200 <activation>
201 <jdk>1.5</jdk>
202 </activation>
203 <modules>
204 <module>core/annotations</module>
205 <module>manipulator/manipulator-java5</module>
206 <module>handler/jmx</module>
207 <module>handler/transaction</module>
208 </modules>
209 </profile>
210 <profile>
211 <id>java6</id>
212 <activation>
213 <jdk>1.6</jdk>
214 </activation>
215 <modules>
216 <module>core/annotations</module>
217 <module>manipulator/manipulator-java5</module>
218 <module>handler/jmx</module>
219 <module>handler/transaction</module>
220 </modules>
221 </profile>
222
223 <profile>
224 <id>integration-tests</id>
225 <modules>
226 <module>integration-tests</module>
227 </modules>
228 </profile>
229 </profiles>
230
231</project>