blob: c7d753f5638ba979a4d52f0b4dc6920b71c1eab5 [file] [log] [blame]
Clement Escoffier87684562011-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>
37 </repositories>
38
39
40 <properties>
Clement Escoffierbd57d112012-10-28 14:29:10 +000041 <ipojo.core.release>1.8.2</ipojo.core.release>
Clement Escoffier87684562011-08-18 11:36:08 +000042 <ipojo.core.snapshot>1.9.0-SNAPSHOT</ipojo.core.snapshot>
43
44 <ipojo.api.release>1.6.0</ipojo.api.release>
45 <ipojo.api.snapshot>1.7.0-SNAPSHOT</ipojo.api.snapshot>
46
Clement Escoffierbd57d112012-10-28 14:29:10 +000047 <ipojo.composite.release>1.8.2</ipojo.composite.release>
Clement Escoffier87684562011-08-18 11:36:08 +000048 <ipojo.composite.snapshot>1.9.0-SNAPSHOT</ipojo.composite.snapshot>
49
50 <ipojo.eah.release>1.6.0</ipojo.eah.release>
51 <ipojo.eah.snapshot>1.9.0-SNAPSHOT</ipojo.eah.snapshot>
52 <ipojo.temporal.snapshot>1.7.0-SNAPSHOT</ipojo.temporal.snapshot>
53 <ipojo.wbp.snapshot>1.6.1-SNAPSHOT</ipojo.wbp.snapshot>
Clement Escoffierbd57d112012-10-28 14:29:10 +000054
55 <ipojo.manipulator.release>1.8.6</ipojo.manipulator.release>
56 <ipojo.manipulator.snapshot>1.9.0-SNAPSHOT</ipojo.manipulator.snapshot>
Clement Escoffier87684562011-08-18 11:36:08 +000057 </properties>
58
59 <dependencyManagement>
60 <dependencies>
61 <dependency>
62 <groupId>org.osgi</groupId>
63 <artifactId>org.osgi.core</artifactId>
64 <version>4.2.0</version>
65 </dependency>
66 <dependency>
67 <groupId>org.osgi</groupId>
68 <artifactId>org.osgi.compendium</artifactId>
69 <version>4.2.0</version>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier057f1582012-04-21 11:03:41 +000074 <version>${ipojo.core.snapshot}</version>
Clement Escoffier87684562011-08-18 11:36:08 +000075 </dependency>
76 <dependency>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffier057f1582012-04-21 11:03:41 +000079 <version>${ipojo.core.snapshot}</version>
Clement Escoffier87684562011-08-18 11:36:08 +000080 </dependency>
81 <dependency>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>org.apache.felix.ipojo.api</artifactId>
84 <version>${ipojo.api.release}</version>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier057f1582012-04-21 11:03:41 +000089 <version>${ipojo.composite.snapshot}</version>
Clement Escoffier87684562011-08-18 11:36:08 +000090 </dependency>
91 <dependency>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier057f1582012-04-21 11:03:41 +000094 <version>1.8.4</version>
Clement Escoffier87684562011-08-18 11:36:08 +000095 </dependency>
96 <dependency>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId>
99 <version>1.4.0</version>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
104 <version>1.4.0</version>
105 </dependency>
106
107 <dependency>
108 <groupId>org.ow2.chameleon.testing</groupId>
109 <artifactId>tinybundles-ipojo</artifactId>
110 <version>0.2.0</version>
111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.ow2.chameleon.testing</groupId>
115 <artifactId>osgi-helpers</artifactId>
116 <version>0.2.0</version>
117 <scope>test</scope>
118 </dependency>
119 </dependencies>
120 </dependencyManagement>
121
122 <modules>
123 <module>manipulator/manipulation</module>
124 <module>manipulator/metadata</module>
125 <module>manipulator/primitives</module>
126 <module>manipulator/creation</module>
127 <module>core/factories</module>
128 <module>core/lifecycle-controller</module>
129 <module>core/service-providing</module>
130 <module>core/lifecycle-callback</module>
131 <module>core/service-dependency</module>
132 <module>core/service-dependency-bindingpolicy</module>
133 <module>core/service-dependency-filter</module>
134 <module>core/service-dependency-comparator</module>
135 <module>core/service-providing-strategies</module>
136 <module>core/service-providing-inheritance</module>
137 <module>core/service-dependency-optional</module>
138 <module>core/configuration</module>
139 <module>core/handler</module>
140 <module>core/external-handlers</module>
141 <module>core/bad-configurations</module>
142 <module>core/logger</module>
143 <module>core/factory-version</module>
144 <module>composite/composite-runtime</module>
145 <module>composite/import-export</module>
146 <module>composite/service-instance</module>
147 <module>composite/service-providing</module>
148 <module>handler/temporal</module>
149 <module>handler/whiteboard</module>
150 <module>handler/eventadmin</module>
151 <module>core/configadmin</module>
152 <module>api</module>
153 <module>online-manipulator</module>
154 </modules>
155
156 <build>
157 <pluginManagement>
158 <plugins>
159 <plugin>
160 <groupId>org.apache.felix</groupId>
161 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierbd57d112012-10-28 14:29:10 +0000162 <version>${ipojo.manipulator.snapshot}</version>
Clement Escoffier87684562011-08-18 11:36:08 +0000163 </plugin>
164 <plugin>
165 <groupId>org.apache.felix</groupId>
166 <artifactId>maven-bundle-plugin</artifactId>
167 <version>2.0.1</version>
168 </plugin>
169 </plugins>
170 </pluginManagement>
171 </build>
172 <profiles>
173 <profile>
174 <id>java5</id>
175 <activation>
176 <jdk>1.5</jdk>
177 </activation>
178 <modules>
179 <module>core/annotations</module>
180 <module>manipulator/manipulator-java5</module>
181 <module>handler/jmx</module>
182 <module>handler/transaction</module>
183 </modules>
184 </profile>
185 <profile>
186 <id>java6</id>
187 <activation>
188 <jdk>1.6</jdk>
189 </activation>
190 <modules>
191 <module>core/annotations</module>
192 <module>manipulator/manipulator-java5</module>
193 <module>handler/jmx</module>
194 <module>handler/transaction</module>
195 </modules>
196 </profile>
197
198 <profile>
199 <id>integration-tests</id>
200 <modules>
201 <module>integration-tests</module>
202 </modules>
203 </profile>
204 </profiles>
205
206</project>