blob: 096981e11ba45a1b415ec262efcface6f1282034 [file] [log] [blame]
Clement Escoffier69f6d382013-02-18 21:10:48 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6 <parent>
7 <groupId>org.apache.felix</groupId>
8 <artifactId>org.apache.felix.ipojo.runtime.core-it</artifactId>
9 <version>1.9.0-SNAPSHOT</version>
10 <relativePath>../../../pom.xml</relativePath>
11 </parent>
12
13 <modelVersion>4.0.0</modelVersion>
14
15 <groupId>org.apache.felix</groupId>
16 <artifactId>ipojo-core-logger-test</artifactId>
17
18 <name>${project.artifactId}</name>
Clement Escoffiera5dab632013-02-23 11:51:46 +000019
20 <!--
21 Those tests are disabled on equinox, because equinox comes with a broken implementation of the log reader
22 service returning an empty enumeration instead of the collection of logged messages.
23
24 From ExtendedLogReaderServiceFactory.java line 204:
25 Enumeration getLog() {
26 return EMPTY_ENUMERATION;
27 }
28
29 As the tests are based on this, we can't run them on equinox. In addition, registering a log listener is not enough
30 as we miss all messages logged before the registration of the listener.
31 -->
32
33 <profiles>
34 <profile>
35 <id>equinox</id>
36 <build>
37 <plugins>
38 <plugin>
39 <artifactId>maven-surefire-plugin</artifactId>
40 <configuration>
41 <skipTests>true</skipTests>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46 </profile>
47 </profiles>
48
Clement Escoffier69f6d382013-02-18 21:10:48 +000049
50</project>