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