blob: 3e89e03239c903bc1193b10b1e9472ebb2d69d83 [file] [log] [blame]
Clement Escoffier03e1db72010-05-01 10:21:51 +00001<!--
Clement Escoffier78c79b42010-09-11 09:12:25 +00002 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
Clement Escoffier03e1db72010-05-01 10:21:51 +00009
Clement Escoffier78c79b42010-09-11 09:12:25 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier03e1db72010-05-01 10:21:51 +000011
Clement Escoffier78c79b42010-09-11 09:12:25 +000012 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
Clement Escoffier03e1db72010-05-01 10:21:51 +000018-->
Clement Escoffierea9dac42009-06-21 09:34:37 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Clement Escoffier78c79b42010-09-11 09:12:25 +000021 <parent>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 </parent>
Clement Escoffierea9dac42009-06-21 09:34:37 +000026 <modelVersion>4.0.0</modelVersion>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +000027 <groupId>ipojo.tests</groupId>
28 <artifactId>tests.transactions</artifactId>
Clement Escoffierea9dac42009-06-21 09:34:37 +000029 <packaging>jar</packaging>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000030 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +000031 <name>iPOJO Transaction Handler Test Suite</name>
Clement Escoffierea9dac42009-06-21 09:34:37 +000032 <dependencies>
33 <dependency>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000034 <groupId>org.apache.felix</groupId>
35 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000036 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000040 </dependency>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffier32a294a2010-09-03 11:52:15 +000044 <version>1.7.0-SNAPSHOT</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000045 </dependency>
46 <dependency>
Clement Escoffier78c79b42010-09-11 09:12:25 +000047 <groupId>org.ow2.chameleon</groupId>
48 <artifactId>transaction-geronimo</artifactId>
49 <version>0.0.1-SNAPSHOT</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000050 </dependency>
Clement Escoffier78c79b42010-09-11 09:12:25 +000051 <dependency>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000052 <groupId>org.apache.felix</groupId>
53 <artifactId>org.apache.felix.ipojo.handler.transaction</artifactId>
Clement Escoffier134b0062010-05-01 10:46:02 +000054 <version>${project.version}</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000055 </dependency>
Clement Escoffier2fdda122010-04-29 15:53:58 +000056
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000057 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +000058 <groupId>org.ow2.chameleon.testing</groupId>
59 <artifactId>osgi-helpers</artifactId>
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000060 </dependency>
Clement Escoffier78c79b42010-09-11 09:12:25 +000061 <!-- Pax Exam API: -->
62 <dependency>
63 <groupId>org.ops4j.pax.exam</groupId>
64 <artifactId>pax-exam</artifactId>
65 <version>1.2.0</version>
66 </dependency>
67 <!-- During runtime Pax Exam will discover the OSGi container to use by
68 searching metadata available into classpath. Pax Exam comes with a default
69 container that uses [Pax Runner] for implementing the container requirements: -->
70 <dependency>
71 <groupId>org.ops4j.pax.exam</groupId>
72 <artifactId>pax-exam-container-default
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000073 </artifactId>
Clement Escoffier78c79b42010-09-11 09:12:25 +000074 <version>1.2.0</version>
75 </dependency>
76 <!-- If your test code is based on JUnit you will have to have the Junit
77 support artifact: -->
78 <dependency>
79 <groupId>org.ops4j.pax.exam</groupId>
80 <artifactId>pax-exam-junit</artifactId>
81 <version>1.2.0</version>
82 </dependency>
83 <dependency>
84 <groupId>junit</groupId>
85 <artifactId>junit</artifactId>
86 <version>4.5</version>
87 <type>jar</type>
88 <scope>test</scope>
89 </dependency>
90 <!-- Tinybundles -->
91 <dependency>
92 <groupId>org.ops4j.pax.swissbox</groupId>
93 <artifactId>pax-swissbox-tinybundles</artifactId>
94 <version>1.2.0</version>
95 </dependency>
96 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +000097 <groupId>org.ow2.chameleon.testing</groupId>
98 <artifactId>tinybundles-ipojo</artifactId>
Clement Escoffier78c79b42010-09-11 09:12:25 +000099 </dependency>
100 <dependency>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000101 <groupId>xerces</groupId>
102 <artifactId>xercesImpl</artifactId>
103 <version>2.4.0</version>
104 </dependency>
Clement Escoffier78c79b42010-09-11 09:12:25 +0000105 <dependency>
106 <groupId>org.ops4j.pax.logging</groupId>
107 <artifactId>pax-logging-api</artifactId>
108 <version>1.4</version>
109 </dependency>
110 <dependency>
111 <groupId>org.ops4j.pax.logging</groupId>
112 <artifactId>pax-logging-service</artifactId>
113 <version>1.4</version>
114 <exclusions>
115 <exclusion>
116 <artifactId>jmxtools</artifactId>
117 <groupId>com.sun.jdmk</groupId>
118 </exclusion>
119 <exclusion>
120 <artifactId>jmxri</artifactId>
121 <groupId>com.sun.jmx</groupId>
122 </exclusion>
Clement Escoffier342a3de2010-09-11 09:42:31 +0000123 <exclusion>
124 <artifactId>mail</artifactId>
125 <groupId>javax.mail</groupId>
126 </exclusion>
Clement Escoffier78c79b42010-09-11 09:12:25 +0000127 </exclusions>
128 </dependency>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +0000129
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000130 </dependencies>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +0000131
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000132 <repositories>
133 <repository>
134 <id>ops4j.releases</id>
135 <name>OPS4J Release</name>
136 <url> http://repository.ops4j.org/maven2/</url>
137 <releases>
138 <enabled>true</enabled>
139 </releases>
140 <snapshots>
141 <enabled>false</enabled>
142 </snapshots>
143 </repository>
144 </repositories>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +0000145
Clement Escoffier78c79b42010-09-11 09:12:25 +0000146 <build>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000147 <plugins>
148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-compiler-plugin</artifactId>
151 <configuration>
152 <source>1.5</source>
153 <target>1.5</target>
154 </configuration>
155 </plugin>
156 <plugin>
157 <groupId>org.apache.servicemix.tooling</groupId>
158 <artifactId>depends-maven-plugin</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000159 <version>1.2</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000160 <executions>
161 <execution>
162 <id>generate-depends-file</id>
163 <goals>
164 <goal>generate-depends-file</goal>
165 </goals>
166 </execution>
167 </executions>
168 </plugin>
Clement Escoffier78c79b42010-09-11 09:12:25 +0000169 </plugins>
170 </build>
Clement Escoffierea9dac42009-06-21 09:34:37 +0000171</project>