blob: d81c04dc44fa6a214886055733319274558a4fed [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 Escoffierca9ad342009-07-12 08:11:01 +000027 <modelVersion>4.0.0</modelVersion>
28 <groupId>ipojo.tests</groupId>
29 <artifactId>tests.core.handler</artifactId>
30 <name>iPOJO Handler Mechanism Test Suite</name>
Clement Escoffier84075052011-02-23 10:36:42 +000031 <version>${ipojo.core.snapshot}</version>
Clement Escoffierca9ad342009-07-12 08:11:01 +000032 <description>Test the handler mechanism</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 Escoffierca9ad342009-07-12 08:11:01 +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 Escoffierca9ad342009-07-12 08:11:01 +000057 </plugins>
58 </build>
59
60 <dependencies>
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier84075052011-02-23 10:36:42 +000064 <version>${ipojo.core.snapshot}</version>
Clement Escoffierca9ad342009-07-12 08:11:01 +000065 </dependency>
66
Clement Escoffier29d9de12010-02-08 19:15:16 +000067 <!-- Pax Exam API: -->
68 <dependency>
69 <groupId>org.ops4j.pax.exam</groupId>
70 <artifactId>pax-exam</artifactId>
71 <version>1.2.0</version>
72 <scope>test</scope>
73 </dependency>
74 <!--
75 During runtime Pax Exam will discover the OSGi container to use by
76 searching metadata available into classpath. Pax Exam comes with a
77 default container that uses [Pax Runner] for implementing the
78 container requirements:
79 -->
80 <dependency>
81 <groupId>org.ops4j.pax.exam</groupId>
82 <artifactId>pax-exam-container-default
83 </artifactId>
84 <version>1.2.0</version>
85 <scope>test</scope>
86 </dependency>
87 <!--
88 If your test code is based on JUnit you will have to have the Junit
89 support artifact:
90 -->
91 <dependency>
92 <groupId>org.ops4j.pax.exam</groupId>
93 <artifactId>pax-exam-junit</artifactId>
94 <version>1.2.0</version>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>junit</groupId>
99 <artifactId>junit</artifactId>
100 <version>4.5</version>
101 <type>jar</type>
102 <scope>test</scope>
103 </dependency>
104
105 <!-- TinyBundle -->
106 <dependency>
107 <groupId>org.ops4j.pax.swissbox</groupId>
108 <artifactId>pax-swissbox-tinybundles</artifactId>
109 <version>1.2.0</version>
110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.ops4j.base</groupId>
114 <artifactId>ops4j-base</artifactId>
115 <version>1.2.0</version>
116 <scope>test</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.ops4j.pax.swissbox</groupId>
120 <artifactId>pax-swissbox-bnd</artifactId>
121 <version>1.2.0</version>
122 <scope>test</scope>
123 </dependency>
124
125 <!-- mockito -->
126 <dependency>
127 <groupId>org.mockito</groupId>
128 <artifactId>mockito-all</artifactId>
129 <version>1.7</version>
130 <scope>test</scope>
131 </dependency>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000132
Clement Escoffier87684562011-08-18 11:36:08 +0000133 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000134 <groupId>org.ow2.chameleon.testing</groupId>
135 <artifactId>tinybundles-ipojo</artifactId>
Clement Escoffier29d9de12010-02-08 19:15:16 +0000136 </dependency>
137 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000138 <groupId>org.ow2.chameleon.testing</groupId>
139 <artifactId>osgi-helpers</artifactId>
Clement Escoffier29d9de12010-02-08 19:15:16 +0000140 </dependency>
Clement Escoffierca9ad342009-07-12 08:11:01 +0000141 </dependencies>
142
143 <repositories>
144 <repository>
145 <id>ops4j.releases</id>
146 <name>OPS4J Release</name>
147 <url> http://repository.ops4j.org/maven2/</url>
148 <releases>
149 <enabled>true</enabled>
150 </releases>
151 <snapshots>
152 <enabled>false</enabled>
153 </snapshots>
154 </repository>
155 </repositories>
156
157</project>