blob: 15e4b0dd1c633a38a74eeb0c06174dc91e7d558e [file] [log] [blame]
Clement Escoffier49817b62009-08-28 08:20:47 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>ipojo.tests</groupId>
4 <artifactId>tests.core.logger</artifactId>
5 <name>iPOJO Logger Test Suite</name>
6 <version>1.5.0-SNAPSHOT</version>
7 <description>Test the logger configuration</description>
8
9 <build>
10 <plugins>
11 <plugin>
12 <groupId>org.apache.maven.plugins</groupId>
13 <artifactId>maven-compiler-plugin</artifactId>
14 <configuration>
15 <source>1.5</source>
16 <target>1.5</target>
17 </configuration>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.servicemix.tooling</groupId>
21 <artifactId>depends-maven-plugin</artifactId>
22 <executions>
23 <execution>
24 <id>generate-depends-file</id>
25 <goals>
26 <goal>generate-depends-file</goal>
27 </goals>
28 </execution>
29 </executions>
30 </plugin>
31
32 <!-- <plugin>
33 <groupId>org.ops4j.pax.exam</groupId>
34 <artifactId>maven-paxexam-plugin</artifactId>
35 <executions>
36 <execution>
37 <id>generate-paxexam-config</id>
38 <goals>
39 <goal>generate-paxexam-config</goal>
40 </goals>
41 </execution>
42 </executions>
43 <configuration>
44 <settings>
45 <platform>felix</platform>
46 </settings>
47 </configuration>
48 </plugin> -->
49 </plugins>
50 </build>
51
52 <dependencies>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo</artifactId>
56 <version>${pom.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>org.apache.felix.log</artifactId>
61 <version>1.0.0</version>
62 </dependency>
63
64 <!--
65 Pax Exam API:
66 -->
67 <dependency>
68 <groupId>org.ops4j.pax.exam</groupId>
69 <artifactId>pax-exam</artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +000070 <version>1.2.0</version>
Clement Escoffier49817b62009-08-28 08:20:47 +000071 </dependency>
72 <!--
73 During runtime Pax Exam will discover the OSGi container to use by
74 searching metadata available into classpath. Pax Exam comes with a
75 default container that uses [Pax Runner] for implementing the
76 container requirements:
77 -->
78 <dependency>
79 <groupId>org.ops4j.pax.exam</groupId>
80 <artifactId>pax-exam-container-default
81 </artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +000082 <version>1.2.0</version>
Clement Escoffier49817b62009-08-28 08:20:47 +000083 </dependency>
84 <!--
85 If your test code is based on JUnit you will have to have the Junit
86 support artifact:
87 -->
88 <dependency>
89 <groupId>org.ops4j.pax.exam</groupId>
90 <artifactId>pax-exam-junit</artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +000091 <version>1.2.0</version>
Clement Escoffier49817b62009-08-28 08:20:47 +000092 </dependency>
93 <dependency>
94 <groupId>junit</groupId>
95 <artifactId>junit</artifactId>
96 <version>4.5</version>
97 <type>jar</type>
98 <scope>test</scope>
99 </dependency>
100 <!-- Tinybundles -->
101 <dependency>
102 <groupId>org.ops4j.pax.swissbox</groupId>
103 <artifactId>pax-swissbox-tinybundles</artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +0000104 <version>1.2.0</version>
Clement Escoffier49817b62009-08-28 08:20:47 +0000105 </dependency>
106 <dependency>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO</artifactId>
109 <version>${pom.version}</version>
110 </dependency>
111 </dependencies>
112
113 <repositories>
114 <repository>
115 <id>ops4j.releases</id>
116 <name>OPS4J Release</name>
117 <url> http://repository.ops4j.org/maven2/</url>
118 <releases>
119 <enabled>true</enabled>
120 </releases>
121 <snapshots>
122 <enabled>false</enabled>
123 </snapshots>
124 </repository>
125 </repositories>
126
127</project>