blob: ad44bdb290d64d2c159b7569a4295466415a0a82 [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 Escoffier49817b62009-08-28 08:20:47 +000027 <modelVersion>4.0.0</modelVersion>
28 <groupId>ipojo.tests</groupId>
29 <artifactId>tests.core.logger</artifactId>
30 <name>iPOJO Logger Test Suite</name>
31 <version>1.5.0-SNAPSHOT</version>
32 <description>Test the logger configuration</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 Escoffier49817b62009-08-28 08:20:47 +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 Escoffier49817b62009-08-28 08:20:47 +000057 </plugins>
58 </build>
59
60 <dependencies>
Clement Escoffier03e1db72010-05-01 10:21:51 +000061 <dependency>
62 <groupId>org.osgi</groupId>
63 <artifactId>org.osgi.core</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>org.apache.felix.ipojo</artifactId>
68 <version>1.7.0-SNAPSHOT</version>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>org.apache.felix.log</artifactId>
73 <version>1.0.0</version>
74 </dependency>
Clement Escoffier49817b62009-08-28 08:20:47 +000075
Clement Escoffier03e1db72010-05-01 10:21:51 +000076 <!--
Clement Escoffier49817b62009-08-28 08:20:47 +000077 Pax Exam API:
78 -->
Clement Escoffier03e1db72010-05-01 10:21:51 +000079 <dependency>
80 <groupId>org.ops4j.pax.exam</groupId>
81 <artifactId>pax-exam</artifactId>
82 <version>1.2.0</version>
83 </dependency>
84 <!--
85 During runtime Pax Exam will discover the OSGi container to use by
86 searching metadata available into classpath. Pax Exam comes with a
87 default container that uses [Pax Runner] for implementing the
88 container requirements:
89 -->
90 <dependency>
91 <groupId>org.ops4j.pax.exam</groupId>
92 <artifactId>pax-exam-container-default
Clement Escoffier49817b62009-08-28 08:20:47 +000093 </artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000094 <version>1.2.0</version>
95 </dependency>
96 <!--
97 If your test code is based on JUnit you will have to have the Junit
98 support artifact:
99 -->
100 <dependency>
101 <groupId>org.ops4j.pax.exam</groupId>
102 <artifactId>pax-exam-junit</artifactId>
103 <version>1.2.0</version>
104 </dependency>
105 <dependency>
106 <groupId>junit</groupId>
107 <artifactId>junit</artifactId>
108 <version>4.5</version>
109 <type>jar</type>
110 <scope>test</scope>
111 </dependency>
112 <!-- Tinybundles -->
113 <dependency>
114 <groupId>org.ops4j.pax.swissbox</groupId>
115 <artifactId>pax-swissbox-tinybundles</artifactId>
116 <version>1.2.0</version>
117 </dependency>
118
119 <dependency>
120 <groupId>org.ow2.chameleon.testing</groupId>
121 <artifactId>tinybundles-ipojo</artifactId>
122 </dependency>
123 <dependency>
124 <groupId>org.ow2.chameleon.testing</groupId>
125 <artifactId>osgi-helpers</artifactId>
126 </dependency>
127</dependencies>
Clement Escoffier49817b62009-08-28 08:20:47 +0000128
129 <repositories>
130 <repository>
131 <id>ops4j.releases</id>
132 <name>OPS4J Release</name>
133 <url> http://repository.ops4j.org/maven2/</url>
134 <releases>
135 <enabled>true</enabled>
136 </releases>
137 <snapshots>
138 <enabled>false</enabled>
139 </snapshots>
140 </repository>
141 </repositories>
142
143</project>