blob: 4b151323a8e0c91ce87f254b9ad6222daf4bc51a [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>
Clement Escoffierca9ad342009-07-12 08:11:01 +000026 <modelVersion>4.0.0</modelVersion>
27 <groupId>ipojo.tests</groupId>
28 <artifactId>tests.core.handler</artifactId>
29 <name>iPOJO Handler Mechanism Test Suite</name>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000030 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierca9ad342009-07-12 08:11:01 +000031 <description>Test the handler mechanism</description>
32
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 <configuration>
39 <source>1.5</source>
40 <target>1.5</target>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.servicemix.tooling</groupId>
45 <artifactId>depends-maven-plugin</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000046 <version>1.2</version>
Clement Escoffierca9ad342009-07-12 08:11:01 +000047 <executions>
48 <execution>
49 <id>generate-depends-file</id>
50 <goals>
51 <goal>generate-depends-file</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
Clement Escoffierca9ad342009-07-12 08:11:01 +000056 </plugins>
57 </build>
58
59 <dependencies>
60 <dependency>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +000063 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierca9ad342009-07-12 08:11:01 +000064 </dependency>
65
Clement Escoffier29d9de12010-02-08 19:15:16 +000066 <!-- Pax Exam API: -->
67 <dependency>
68 <groupId>org.ops4j.pax.exam</groupId>
69 <artifactId>pax-exam</artifactId>
70 <version>1.2.0</version>
71 <scope>test</scope>
72 </dependency>
73 <!--
74 During runtime Pax Exam will discover the OSGi container to use by
75 searching metadata available into classpath. Pax Exam comes with a
76 default container that uses [Pax Runner] for implementing the
77 container requirements:
78 -->
79 <dependency>
80 <groupId>org.ops4j.pax.exam</groupId>
81 <artifactId>pax-exam-container-default
82 </artifactId>
83 <version>1.2.0</version>
84 <scope>test</scope>
85 </dependency>
86 <!--
87 If your test code is based on JUnit you will have to have the Junit
88 support artifact:
89 -->
90 <dependency>
91 <groupId>org.ops4j.pax.exam</groupId>
92 <artifactId>pax-exam-junit</artifactId>
93 <version>1.2.0</version>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>junit</groupId>
98 <artifactId>junit</artifactId>
99 <version>4.5</version>
100 <type>jar</type>
101 <scope>test</scope>
102 </dependency>
103
104 <!-- TinyBundle -->
105 <dependency>
106 <groupId>org.ops4j.pax.swissbox</groupId>
107 <artifactId>pax-swissbox-tinybundles</artifactId>
108 <version>1.2.0</version>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.ops4j.base</groupId>
113 <artifactId>ops4j-base</artifactId>
114 <version>1.2.0</version>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.ops4j.pax.swissbox</groupId>
119 <artifactId>pax-swissbox-bnd</artifactId>
120 <version>1.2.0</version>
121 <scope>test</scope>
122 </dependency>
123
124 <!-- mockito -->
125 <dependency>
126 <groupId>org.mockito</groupId>
127 <artifactId>mockito-all</artifactId>
128 <version>1.7</version>
129 <scope>test</scope>
130 </dependency>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000131
Clement Escoffier03e1db72010-05-01 10:21:51 +0000132 <dependency>
133 <groupId>org.ow2.chameleon.testing</groupId>
134 <artifactId>tinybundles-ipojo</artifactId>
Clement Escoffier29d9de12010-02-08 19:15:16 +0000135 </dependency>
136 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000137 <groupId>org.ow2.chameleon.testing</groupId>
138 <artifactId>osgi-helpers</artifactId>
Clement Escoffier29d9de12010-02-08 19:15:16 +0000139 </dependency>
Clement Escoffierca9ad342009-07-12 08:11:01 +0000140 </dependencies>
141
142 <repositories>
143 <repository>
144 <id>ops4j.releases</id>
145 <name>OPS4J Release</name>
146 <url> http://repository.ops4j.org/maven2/</url>
147 <releases>
148 <enabled>true</enabled>
149 </releases>
150 <snapshots>
151 <enabled>false</enabled>
152 </snapshots>
153 </repository>
154 </repositories>
155
156</project>