blob: 17a5e258c7c4e18960c680b2494672c761309804 [file] [log] [blame]
Clement Escoffier1c47f282013-02-13 16:26:18 +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-annotations-test</artifactId>
17 <version>1.0-SNAPSHOT</version>
18
19 <name>${project.artifactId}</name>
20
21 <properties>
22 <exam.version>3.0.0</exam.version>
23 <url.version>1.5.1</url.version>
24 </properties>
25
26 <dependencies>
27
28 <dependency>
29 <groupId>org.ops4j.pax.exam</groupId>
30 <artifactId>pax-exam-container-native</artifactId>
31 <version>${exam.version}</version>
32 <scope>test</scope>
33 </dependency>
34
35 <dependency>
36 <groupId>org.ops4j.pax.exam</groupId>
37 <artifactId>pax-exam-junit4</artifactId>
38 <version>${exam.version}</version>
39 <scope>test</scope>
40 </dependency>
41
42 <dependency>
43 <groupId>org.ops4j.pax.exam</groupId>
44 <artifactId>pax-exam-link-mvn</artifactId>
45 <version>${exam.version}</version>
46 <scope>test</scope>
47 </dependency>
48
49 <dependency>
50 <groupId>org.ops4j.pax.url</groupId>
51 <artifactId>pax-url-aether</artifactId>
52 <version>${url.version}</version>
53 <scope>test</scope>
54 </dependency>
55
56 <dependency>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>org.apache.felix.framework</artifactId>
59 <version>4.2.0</version>
60 <scope>test</scope>
61 </dependency>
62
63 <dependency>
64 <groupId>ch.qos.logback</groupId>
65 <artifactId>logback-core</artifactId>
66 <version>0.9.6</version>
67 <scope>test</scope>
68 </dependency>
69
70 <dependency>
71 <groupId>ch.qos.logback</groupId>
72 <artifactId>logback-classic</artifactId>
73 <version>0.9.6</version>
74 <scope>test</scope>
75 </dependency>
76
77
78 <dependency>
79 <groupId>junit</groupId>
80 <artifactId>junit</artifactId>
81 <version>4.9</version>
82 <scope>test</scope>
83 </dependency>
84
85
86 <dependency>
87 <groupId>org.ops4j.pax.tinybundles</groupId>
88 <artifactId>tinybundles</artifactId>
89 <version>1.0.0</version>
90 </dependency>
91
92 <dependency>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>org.apache.felix.ipojo</artifactId>
95 <version>1.9.0-SNAPSHOT</version>
96 </dependency>
97
98 <dependency>
99 <groupId>org.apache.felix</groupId>
100 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
101 <version>1.9.0-SNAPSHOT</version>
102 </dependency>
103
104 <dependency>
105 <groupId>commons-io</groupId>
106 <artifactId>commons-io</artifactId>
107 <version>2.4</version>
108 </dependency>
109
110 <dependency>
111 <groupId>org.ow2.chameleon.testing</groupId>
112 <artifactId>osgi-helpers</artifactId>
113 <version>0.5.0-SNAPSHOT</version>
114 <scope>test</scope>
115 </dependency>
116
117 <dependency>
118 <groupId>org.ow2.chameleon.testing</groupId>
119 <artifactId>tinybundles-ipojo</artifactId>
120 <version>0.3.0-SNAPSHOT</version>
121 </dependency>
122
123 <dependency>
124 <groupId>org.apache.felix</groupId>
125 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
126 <version>1.8.0</version>
127 </dependency>
128
129 </dependencies>
130
131 <build>
132 <plugins>
133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-compiler-plugin</artifactId>
136 <version>2.5.1</version>
137 <configuration>
138 <source>1.6</source>
139 <target>1.6</target>
140 </configuration>
141 </plugin>
142
143 <plugin>
144 <groupId>org.apache.servicemix.tooling</groupId>
145 <artifactId>depends-maven-plugin</artifactId>
146 <version>1.2</version>
147 <executions>
148 <execution>
149 <id>generate-config</id>
150 <goals>
151 <goal>generate-depends-file</goal>
152 </goals>
153 </execution>
154 </executions>
155 </plugin>
156 </plugins>
157 </build>
158
159</project>