17c242852abe45c63656c538f4cad127942a7ca7
[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-common</artifactId>
20             <version>0.1.0-SNAPSHOT</version>
21         </dependency>
22                 <dependency>
23             <groupId>org.wamblee.xmlrouter</groupId>
24             <artifactId>xmlrouter-config</artifactId>
25             <version>0.1.0-SNAPSHOT</version>
26         </dependency>
27                 <dependency>
28             <groupId>org.wamblee.xmlrouter</groupId>
29             <artifactId>xmlrouter-listener</artifactId>
30             <version>0.1.0-SNAPSHOT</version>
31         </dependency>
32                 <dependency>
33             <groupId>org.wamblee.xmlrouter</groupId>
34             <artifactId>xmlrouter-publish</artifactId>
35             <version>0.1.0-SNAPSHOT</version>
36         </dependency>
37                 <dependency>
38             <groupId>org.wamblee.xmlrouter</groupId>
39             <artifactId>xmlrouter-subscribe</artifactId>
40             <version>0.1.0-SNAPSHOT</version>
41         </dependency>
42        
43         <dependency>
44             <groupId>junit</groupId>
45             <artifactId>junit</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.mockito</groupId>
49             <artifactId>mockito-all</artifactId>
50         </dependency>        
51         
52         <!-- OSGI -->
53         <dependency>
54             <groupId>org.osgi</groupId>
55             <artifactId>org.osgi.core</artifactId>
56             <version>4.2.0</version>
57         </dependency>
58         <dependency>
59             <groupId>org.osgi</groupId>
60             <artifactId>org.osgi.compendium</artifactId>
61             <version>4.2.0</version>
62         </dependency>
63         
64         <!-- Pax exam -->
65         <!-- both runner and native -->
66         <dependency>
67             <groupId>org.ops4j.pax.exam</groupId>
68             <artifactId>pax-exam-junit4</artifactId>
69         </dependency>
70         
71         <!-- both runner and native -->
72         <dependency>
73             <groupId>org.ops4j.pax.exam</groupId>
74             <artifactId>pax-exam-link-mvn</artifactId>
75         </dependency>
76         
77         <!-- only native -->
78         <dependency>
79             <groupId>org.ops4j.pax.exam</groupId>
80             <artifactId>pax-exam-container-native</artifactId>
81         </dependency>
82         
83         <!-- only native -->
84         <dependency>
85             <groupId>org.ops4j.pax.url</groupId>
86             <artifactId>pax-url-aether</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.ops4j.pax.url</groupId>
90             <artifactId>pax-url-wrap</artifactId>
91         </dependency>
92         
93         <!-- only native -->
94         <dependency>
95             <groupId>org.apache.felix</groupId>
96             <artifactId>org.apache.felix.framework</artifactId>
97         </dependency>
98         
99         
100     </dependencies>
101     
102     <build>
103         <plugins>
104             <plugin>
105                 <groupId>org.apache.felix</groupId>
106                 <artifactId>maven-bundle-plugin</artifactId>
107                 <extensions>true</extensions>
108                 <configuration>
109                     <instructions>
110                         <Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
111                     </instructions>
112                 </configuration>
113             </plugin>
114         </plugins>
115     </build>
116     
117     <distributionManagement>
118         <site>
119             <id>xmlrouter-site</id>
120             <url>file:${distrib}/cache</url>
121         </site>
122     </distributionManagement>
123
124 </project>