blob: 08d962dd2211054546b013e5c13fda5e0e7d0169 [file] [log] [blame]
Clement Escoffierca9ad342009-07-12 08:11:01 +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.handler</artifactId>
5 <name>iPOJO Handler Mechanism Test Suite</name>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +00006 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierca9ad342009-07-12 08:11:01 +00007 <description>Test the handler mechanism</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>
Clement Escoffierca9ad342009-07-12 08:11:01 +000031 </plugins>
32 </build>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>org.apache.felix.ipojo</artifactId>
38 <version>${pom.version}</version>
39 </dependency>
40
Clement Escoffier29d9de12010-02-08 19:15:16 +000041 <!-- Pax Exam API: -->
42 <dependency>
43 <groupId>org.ops4j.pax.exam</groupId>
44 <artifactId>pax-exam</artifactId>
45 <version>1.2.0</version>
46 <scope>test</scope>
47 </dependency>
48 <!--
49 During runtime Pax Exam will discover the OSGi container to use by
50 searching metadata available into classpath. Pax Exam comes with a
51 default container that uses [Pax Runner] for implementing the
52 container requirements:
53 -->
54 <dependency>
55 <groupId>org.ops4j.pax.exam</groupId>
56 <artifactId>pax-exam-container-default
57 </artifactId>
58 <version>1.2.0</version>
59 <scope>test</scope>
60 </dependency>
61 <!--
62 If your test code is based on JUnit you will have to have the Junit
63 support artifact:
64 -->
65 <dependency>
66 <groupId>org.ops4j.pax.exam</groupId>
67 <artifactId>pax-exam-junit</artifactId>
68 <version>1.2.0</version>
69 <scope>test</scope>
70 </dependency>
71 <dependency>
72 <groupId>junit</groupId>
73 <artifactId>junit</artifactId>
74 <version>4.5</version>
75 <type>jar</type>
76 <scope>test</scope>
77 </dependency>
78
79 <!-- TinyBundle -->
80 <dependency>
81 <groupId>org.ops4j.pax.swissbox</groupId>
82 <artifactId>pax-swissbox-tinybundles</artifactId>
83 <version>1.2.0</version>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.ops4j.base</groupId>
88 <artifactId>ops4j-base</artifactId>
89 <version>1.2.0</version>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.ops4j.pax.swissbox</groupId>
94 <artifactId>pax-swissbox-bnd</artifactId>
95 <version>1.2.0</version>
96 <scope>test</scope>
97 </dependency>
98
99 <!-- mockito -->
100 <dependency>
101 <groupId>org.mockito</groupId>
102 <artifactId>mockito-all</artifactId>
103 <version>1.7</version>
104 <scope>test</scope>
105 </dependency>
106
Clement Escoffierca9ad342009-07-12 08:11:01 +0000107 <dependency>
Clement Escoffier29d9de12010-02-08 19:15:16 +0000108 <groupId>org.apache.felix</groupId>
109 <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO
110 </artifactId>
111 <version>1.5.0-SNAPSHOT</version>
112 <scope>test</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>org.apache.felix.ipojo.test.helpers</artifactId>
117 <version>1.5.0-SNAPSHOT</version>
118 <scope>test</scope>
119 </dependency>
Clement Escoffierca9ad342009-07-12 08:11:01 +0000120 </dependencies>
121
122 <repositories>
123 <repository>
124 <id>ops4j.releases</id>
125 <name>OPS4J Release</name>
126 <url> http://repository.ops4j.org/maven2/</url>
127 <releases>
128 <enabled>true</enabled>
129 </releases>
130 <snapshots>
131 <enabled>false</enabled>
132 </snapshots>
133 </repository>
134 </repositories>
135
136</project>