blob: a7cb2d25ce994191d5f092adc8345fe0997daf63 [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>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>org.apache.felix.ipojo.transaction.test</artifactId>
6 <packaging>jar</packaging>
7 <version>1.3.0-SNAPSHOT</version>
8 <name>org.apache.felix.ipojo.transaction.test</name>
9 <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>
23 <artifactId>org.apache.felix.transaction</artifactId>
24 <version>0.9.0-SNAPSHOT</version>
25 </dependency>
26 <dependency>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>org.apache.felix.ipojo.transaction</artifactId>
29 <version>1.3.0-SNAPSHOT</version>
30 </dependency>
31 <!--
32 Pax Exam API:
33 -->
34 <dependency>
35 <groupId>org.ops4j.pax.exam</groupId>
36 <artifactId>pax-exam</artifactId>
37 <version>0.4.0</version>
38 </dependency>
39 <!--
40 During runtime Pax Exam will discover the OSGi container to use by
41 searching metadata available into classpath. Pax Exam comes with a
42 default container that uses [Pax Runner] for implementing the
43 container requirements:
44 -->
45 <dependency>
46 <groupId>org.ops4j.pax.exam</groupId>
47 <artifactId>pax-exam-container-default
48 </artifactId>
49 <version>0.4.0</version>
50 </dependency>
51 <!--
52 If your test code is based on JUnit you will have to have the Junit
53 support artifact:
54 -->
55 <dependency>
56 <groupId>org.ops4j.pax.exam</groupId>
57 <artifactId>pax-exam-junit</artifactId>
58 <version>0.4.0</version>
59 </dependency>
60 <dependency>
61 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
63 <version>4.5</version>
64 <type>jar</type>
65 <scope>test</scope>
66 </dependency>
67
68 <dependency>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>org.apache.felix.ipojo.pax.exam.target</artifactId>
71 <version>0.9.0-SNAPSHOT</version>
72 </dependency>
73 <dependency>
74 <groupId>org.ops4j.pax.tinybundles</groupId>
75 <artifactId>pax-tinybundles-core</artifactId>
76 <version>0.5.0-SNAPSHOT</version>
77 </dependency>
78 <dependency>
79 <groupId>xerces</groupId>
80 <artifactId>xercesImpl</artifactId>
81 <version>2.4.0</version>
82 </dependency>
83 <dependency>
84 <groupId>org.ops4j.pax.logging</groupId>
85 <artifactId>pax-logging-api</artifactId>
86 <version>1.3.0</version>
87 </dependency>
88 <dependency>
89 <groupId>org.ops4j.pax.logging</groupId>
90 <artifactId>pax-logging-service</artifactId>
91 <version>1.3.0</version>
92 </dependency>
93
94 </dependencies>
95
96 <repositories>
97 <repository>
98 <id>ops4j.releases</id>
99 <name>OPS4J Release</name>
100 <url> http://repository.ops4j.org/maven2/</url>
101 <releases>
102 <enabled>true</enabled>
103 </releases>
104 <snapshots>
105 <enabled>false</enabled>
106 </snapshots>
107 </repository>
108 </repositories>
109
110 <build>
111 <plugins>
112 <plugin>
113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-compiler-plugin</artifactId>
115 <configuration>
116 <source>1.5</source>
117 <target>1.5</target>
118 </configuration>
119 </plugin>
120 <plugin>
121 <groupId>org.apache.servicemix.tooling</groupId>
122 <artifactId>depends-maven-plugin</artifactId>
123 <executions>
124 <execution>
125 <id>generate-depends-file</id>
126 <goals>
127 <goal>generate-depends-file</goal>
128 </goals>
129 </execution>
130 </executions>
131 </plugin>
132 </plugins>
133 </build>
134</project>