blob: 03e6cbb338f366ba0e46ef6824b2f4cf1d6f3fba [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>
Clement Escoffier86215df2010-04-16 13:54:16 +000053 <dependency>
54 <groupId>org.osgi</groupId>
55 <artifactId>org.osgi.core</artifactId>
56 <version>4.2.0</version>
57 </dependency>
Clement Escoffier49817b62009-08-28 08:20:47 +000058 <dependency>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>org.apache.felix.ipojo</artifactId>
61 <version>${pom.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>org.apache.felix.log</artifactId>
66 <version>1.0.0</version>
67 </dependency>
68
69 <!--
70 Pax Exam API:
71 -->
72 <dependency>
73 <groupId>org.ops4j.pax.exam</groupId>
74 <artifactId>pax-exam</artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +000075 <version>1.2.0</version>
Clement Escoffier49817b62009-08-28 08:20:47 +000076 </dependency>
77 <!--
78 During runtime Pax Exam will discover the OSGi container to use by
79 searching metadata available into classpath. Pax Exam comes with a
80 default container that uses [Pax Runner] for implementing the
81 container requirements:
82 -->
83 <dependency>
84 <groupId>org.ops4j.pax.exam</groupId>
85 <artifactId>pax-exam-container-default
86 </artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +000087 <version>1.2.0</version>
Clement Escoffier49817b62009-08-28 08:20:47 +000088 </dependency>
89 <!--
90 If your test code is based on JUnit you will have to have the Junit
91 support artifact:
92 -->
93 <dependency>
94 <groupId>org.ops4j.pax.exam</groupId>
95 <artifactId>pax-exam-junit</artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +000096 <version>1.2.0</version>
Clement Escoffier49817b62009-08-28 08:20:47 +000097 </dependency>
98 <dependency>
99 <groupId>junit</groupId>
100 <artifactId>junit</artifactId>
101 <version>4.5</version>
102 <type>jar</type>
103 <scope>test</scope>
104 </dependency>
105 <!-- Tinybundles -->
106 <dependency>
107 <groupId>org.ops4j.pax.swissbox</groupId>
108 <artifactId>pax-swissbox-tinybundles</artifactId>
Clement Escoffierfc0f0132010-02-20 10:50:50 +0000109 <version>1.2.0</version>
Clement Escoffier49817b62009-08-28 08:20:47 +0000110 </dependency>
111 <dependency>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO</artifactId>
114 <version>${pom.version}</version>
115 </dependency>
116 </dependencies>
117
118 <repositories>
119 <repository>
120 <id>ops4j.releases</id>
121 <name>OPS4J Release</name>
122 <url> http://repository.ops4j.org/maven2/</url>
123 <releases>
124 <enabled>true</enabled>
125 </releases>
126 <snapshots>
127 <enabled>false</enabled>
128 </snapshots>
129 </repository>
130 </repositories>
131
132</project>