blob: 5f49bb05e99db3797e9d226c580d8ac80f7ed13d [file] [log] [blame]
Clement Escoffierea9dac42009-06-21 09:34:37 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +00004 <groupId>ipojo.tests</groupId>
5 <artifactId>tests.transactions</artifactId>
Clement Escoffierea9dac42009-06-21 09:34:37 +00006 <packaging>jar</packaging>
7 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +00008 <name>iPOJO Transaction Handler Test Suite</name>
Clement Escoffierea9dac42009-06-21 09:34:37 +00009 <url>http://maven.apache.org</url>
10 <dependencies>
11 <dependency>
12 <groupId>org.apache.felix</groupId>
13 <artifactId>org.apache.felix.ipojo</artifactId>
14 <version>1.3.0-SNAPSHOT</version>
15 </dependency>
16 <dependency>
17 <groupId>org.apache.felix</groupId>
18 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
19 <version>1.3.0-SNAPSHOT</version>
20 </dependency>
21 <dependency>
22 <groupId>org.apache.felix</groupId>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +000023 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
24 <version>1.3.0-SNAPSHOT</version>
25 </dependency>
26 <dependency>
27 <groupId>org.apache.felix</groupId>
Clement Escoffierea9dac42009-06-21 09:34:37 +000028 <artifactId>org.apache.felix.transaction</artifactId>
29 <version>0.9.0-SNAPSHOT</version>
30 </dependency>
31 <dependency>
32 <groupId>org.apache.felix</groupId>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +000033 <artifactId>org.apache.felix.ipojo.handler.transaction</artifactId>
Clement Escoffierea9dac42009-06-21 09:34:37 +000034 <version>1.3.0-SNAPSHOT</version>
35 </dependency>
36 <!--
37 Pax Exam API:
38 -->
39 <dependency>
40 <groupId>org.ops4j.pax.exam</groupId>
41 <artifactId>pax-exam</artifactId>
42 <version>0.4.0</version>
43 </dependency>
44 <!--
45 During runtime Pax Exam will discover the OSGi container to use by
46 searching metadata available into classpath. Pax Exam comes with a
47 default container that uses [Pax Runner] for implementing the
48 container requirements:
49 -->
50 <dependency>
51 <groupId>org.ops4j.pax.exam</groupId>
52 <artifactId>pax-exam-container-default
53 </artifactId>
54 <version>0.4.0</version>
55 </dependency>
56 <!--
57 If your test code is based on JUnit you will have to have the Junit
58 support artifact:
59 -->
60 <dependency>
61 <groupId>org.ops4j.pax.exam</groupId>
62 <artifactId>pax-exam-junit</artifactId>
63 <version>0.4.0</version>
64 </dependency>
65 <dependency>
66 <groupId>junit</groupId>
67 <artifactId>junit</artifactId>
68 <version>4.5</version>
69 <type>jar</type>
70 <scope>test</scope>
71 </dependency>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +000072
Clement Escoffierea9dac42009-06-21 09:34:37 +000073 <dependency>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>org.apache.felix.ipojo.pax.exam.target</artifactId>
76 <version>0.9.0-SNAPSHOT</version>
77 </dependency>
78 <dependency>
79 <groupId>org.ops4j.pax.tinybundles</groupId>
80 <artifactId>pax-tinybundles-core</artifactId>
81 <version>0.5.0-SNAPSHOT</version>
82 </dependency>
83 <dependency>
84 <groupId>xerces</groupId>
85 <artifactId>xercesImpl</artifactId>
86 <version>2.4.0</version>
87 </dependency>
88 <dependency>
89 <groupId>org.ops4j.pax.logging</groupId>
90 <artifactId>pax-logging-api</artifactId>
91 <version>1.3.0</version>
92 </dependency>
93 <dependency>
94 <groupId>org.ops4j.pax.logging</groupId>
95 <artifactId>pax-logging-service</artifactId>
96 <version>1.3.0</version>
97 </dependency>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +000098
Clement Escoffierea9dac42009-06-21 09:34:37 +000099 </dependencies>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +0000100
Clement Escoffierea9dac42009-06-21 09:34:37 +0000101 <repositories>
102 <repository>
103 <id>ops4j.releases</id>
104 <name>OPS4J Release</name>
105 <url> http://repository.ops4j.org/maven2/</url>
106 <releases>
107 <enabled>true</enabled>
108 </releases>
109 <snapshots>
110 <enabled>false</enabled>
111 </snapshots>
112 </repository>
113 </repositories>
Clement Escoffierf4dd2f22009-06-21 12:25:22 +0000114
Clement Escoffierea9dac42009-06-21 09:34:37 +0000115 <build>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-compiler-plugin</artifactId>
120 <configuration>
121 <source>1.5</source>
122 <target>1.5</target>
123 </configuration>
124 </plugin>
125 <plugin>
126 <groupId>org.apache.servicemix.tooling</groupId>
127 <artifactId>depends-maven-plugin</artifactId>
128 <executions>
129 <execution>
130 <id>generate-depends-file</id>
131 <goals>
132 <goal>generate-depends-file</goal>
133 </goals>
134 </execution>
135 </executions>
136 </plugin>
137 </plugins>
138 </build>
139</project>