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