blob: 457f4c5036699e33ea1e32dc9a23dec5071ef770 [file] [log] [blame]
Clement Escoffierf1f96282013-06-22 14:46:02 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
20
21<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24
25 <parent>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>org.apache.felix.ipojo.runtime.core-it</artifactId>
28 <version>1.10.2-SNAPSHOT</version>
29 <relativePath>../pom.xml</relativePath>
30 </parent>
31
32 <modelVersion>4.0.0</modelVersion>
33
34 <artifactId>ipojo-api-test</artifactId>
35
36 <name>${project.artifactId}</name>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.apache.felix.ipojo.composite</artifactId>
42 <version>1.10.2-SNAPSHOT</version>
43 <exclusions>
44 <exclusion>
45 <groupId>org.osgi</groupId>
46 <artifactId>org.osgi.core</artifactId>
47 </exclusion>
48 <exclusion>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.ipojo</artifactId>
51 </exclusion>
52 </exclusions>
53 </dependency>
54
55 <dependency>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>org.apache.felix.ipojo.api</artifactId>
58 <version>1.10.2-SNAPSHOT</version>
59 <exclusions>
60 <exclusion>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.osgi.core</artifactId>
63 </exclusion>
64 <exclusion>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>org.apache.felix.ipojo</artifactId>
67 </exclusion>
68 </exclusions>
69 </dependency>
70
71 <dependency>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId>
74 <version>1.4.0</version>
75 <scope>test</scope>
76 <exclusions>
77 <exclusion>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>org.osgi.core</artifactId>
80 </exclusion>
81 <exclusion>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>org.apache.felix.ipojo</artifactId>
84 </exclusion>
85 </exclusions>
86 </dependency>
87 </dependencies>
88
89</project>