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