blob: 0b1b7a06a1cbf12da7ff40e16cf9ff8fc168baed [file] [log] [blame]
Clement Escoffier03e1db72010-05-01 10:21:51 +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 <parent>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 </parent>
26
Clement Escoffier162988d2009-11-07 08:56:40 +000027 <modelVersion>4.0.0</modelVersion>
28 <groupId>ipojo.tests</groupId>
29 <artifactId>tests.core.inheritance</artifactId>
30 <name>iPOJO Service Providing with inheritance Test Suite</name>
31 <version>1.5.0-SNAPSHOT</version>
32 <description>The the service providing with inheritance</description>
33
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-compiler-plugin</artifactId>
39 <configuration>
40 <source>1.5</source>
41 <target>1.5</target>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.servicemix.tooling</groupId>
46 <artifactId>depends-maven-plugin</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000047 <version>1.2</version>
Clement Escoffier162988d2009-11-07 08:56:40 +000048 <executions>
49 <execution>
50 <id>generate-depends-file</id>
51 <goals>
52 <goal>generate-depends-file</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
Clement Escoffier162988d2009-11-07 08:56:40 +000057 </plugins>
58 </build>
59
60 <dependencies>
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +000064 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier162988d2009-11-07 08:56:40 +000065 </dependency>
Clement Escoffier86215df2010-04-16 13:54:16 +000066 <dependency>
67 <groupId>org.osgi</groupId>
68 <artifactId>org.osgi.core</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000069 </dependency>
Clement Escoffier162988d2009-11-07 08:56:40 +000070
Clement Escoffierfc0f0132010-02-20 10:50:50 +000071 <!-- Pax Exam API: -->
72 <dependency>
73 <groupId>org.ops4j.pax.exam</groupId>
74 <artifactId>pax-exam</artifactId>
75 <version>1.2.0</version>
76 <scope>test</scope>
77 </dependency>
78 <!--
79 During runtime Pax Exam will discover the OSGi container to use by
80 searching metadata available into classpath. Pax Exam comes with a
81 default container that uses [Pax Runner] for implementing the
82 container requirements:
83 -->
84 <dependency>
85 <groupId>org.ops4j.pax.exam</groupId>
86 <artifactId>pax-exam-container-default
87 </artifactId>
88 <version>1.2.0</version>
89 <scope>test</scope>
90 </dependency>
91 <!--
92 If your test code is based on JUnit you will have to have the Junit
93 support artifact:
94 -->
95 <dependency>
96 <groupId>org.ops4j.pax.exam</groupId>
97 <artifactId>pax-exam-junit</artifactId>
98 <version>1.2.0</version>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>junit</groupId>
103 <artifactId>junit</artifactId>
104 <version>4.5</version>
105 <type>jar</type>
106 <scope>test</scope>
107 </dependency>
108
109 <!-- TinyBundle -->
110 <dependency>
111 <groupId>org.ops4j.pax.swissbox</groupId>
112 <artifactId>pax-swissbox-tinybundles</artifactId>
113 <version>1.2.0</version>
114 <scope>test</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.ops4j.base</groupId>
118 <artifactId>ops4j-base</artifactId>
119 <version>1.2.0</version>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.ops4j.pax.swissbox</groupId>
124 <artifactId>pax-swissbox-bnd</artifactId>
125 <version>1.2.0</version>
126 <scope>test</scope>
127 </dependency>
128
129 <!-- mockito -->
130 <dependency>
131 <groupId>org.mockito</groupId>
132 <artifactId>mockito-all</artifactId>
133 <version>1.7</version>
134 <scope>test</scope>
135 </dependency>
136
137 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000138 <groupId>org.ow2.chameleon.testing</groupId>
139 <artifactId>tinybundles-ipojo</artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +0000140 </dependency>
141 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000142 <groupId>org.ow2.chameleon.testing</groupId>
143 <artifactId>osgi-helpers</artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +0000144 </dependency>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000145
Clement Escoffier162988d2009-11-07 08:56:40 +0000146 <dependency>
147 <groupId>org.apache.felix</groupId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +0000148 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +0000149 <scope>compile</scope>
Clement Escoffier162988d2009-11-07 08:56:40 +0000150 </dependency>
151 </dependencies>
152
153 <repositories>
154 <repository>
155 <id>ops4j.releases</id>
156 <name>OPS4J Release</name>
157 <url> http://repository.ops4j.org/maven2/</url>
158 <releases>
159 <enabled>true</enabled>
160 </releases>
161 <snapshots>
162 <enabled>false</enabled>
163 </snapshots>
164 </repository>
165 </repositories>
166
167</project>