cleanest workaround for junit/mockito problems so far by putting them on the global...
[xmlrouter] / integrationtest / pom.xml
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4
5     <parent>
6         <groupId>org.wamblee.xmlrouter</groupId>
7         <artifactId>xmlrouter-root</artifactId>
8         <version>0.1.0-SNAPSHOT</version>
9     </parent>
10
11     <modelVersion>4.0.0</modelVersion>
12     <artifactId>xmlrouter-integrationtest</artifactId>
13     <packaging>jar</packaging>
14     <name>/xmlrouter/integrationtest</name>
15     <url>http://wamblee.org</url>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.wamblee.xmlrouter</groupId>
20             <artifactId>xmlrouter-router-bundle</artifactId>
21             <version>0.1.0-SNAPSHOT</version>
22         </dependency>
23
24         <dependency>
25             <groupId>junit</groupId>
26             <artifactId>junit</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.mockito</groupId>
30             <artifactId>mockito-all</artifactId>
31         </dependency>
32
33         <!-- OSGI -->
34         <dependency>
35             <groupId>org.osgi</groupId>
36             <artifactId>org.osgi.core</artifactId>
37             <version>4.2.0</version>
38         </dependency>
39         <dependency>
40             <groupId>org.osgi</groupId>
41             <artifactId>org.osgi.compendium</artifactId>
42             <version>4.2.0</version>
43         </dependency>
44
45         <!-- Pax exam -->
46
47         <!-- only runner -->
48         <!--
49         <dependency>
50             <groupId>org.ops4j.pax.exam</groupId>
51             <artifactId>pax-exam-container-paxrunner</artifactId>
52         </dependency>
53         -->
54
55         <!-- only runner -->
56         <!--
57         <dependency>
58             <groupId>org.ops4j.pax.runner</groupId>
59             <artifactId>pax-runner-no-jcl</artifactId>
60         </dependency>
61         -->
62
63
64         <!-- both runner and native -->
65         <dependency>
66             <groupId>org.ops4j.pax.exam</groupId>
67             <artifactId>pax-exam-junit4</artifactId>
68         </dependency>
69
70         <!-- both runner and native -->
71         <dependency>
72             <groupId>org.ops4j.pax.exam</groupId>
73             <artifactId>pax-exam-link-mvn</artifactId>
74         </dependency>
75
76         <!-- only native -->
77         
78         <dependency>
79             <groupId>org.ops4j.pax.exam</groupId>
80             <artifactId>pax-exam-container-native</artifactId>
81         </dependency>
82         
83
84         <!-- only native -->
85          
86         <dependency>
87             <groupId>org.ops4j.pax.url</groupId>
88             <artifactId>pax-url-aether</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.ops4j.pax.url</groupId>
92             <artifactId>pax-url-wrap</artifactId>
93         </dependency>
94         
95
96         <!-- only native -->
97          
98         <dependency>
99             <groupId>org.apache.felix</groupId>
100             <artifactId>org.apache.felix.framework</artifactId>
101         </dependency>
102         
103
104     </dependencies>
105
106     <build>
107         <plugins>
108             <plugin>
109                 <groupId>org.apache.felix</groupId>
110                 <artifactId>maven-bundle-plugin</artifactId>
111                 <extensions>true</extensions>
112                 <configuration>
113                     <instructions>
114                         <Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
115                     </instructions>
116                 </configuration>
117             </plugin>
118         </plugins>
119     </build>
120
121     <distributionManagement>
122         <site>
123             <id>xmlrouter-site</id>
124             <url>file:${distrib}/cache</url>
125         </site>
126     </distributionManagement>
127
128 </project>