fe3daa8783a3bf46d60436087c47f2a275f49cb7
[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         <dependency>
49             <groupId>org.ops4j.pax.exam</groupId>
50             <artifactId>pax-exam-container-paxrunner</artifactId>
51         </dependency>
52
53         <!-- only runner -->
54         <dependency>
55             <groupId>org.ops4j.pax.runner</groupId>
56             <artifactId>pax-runner-no-jcl</artifactId>
57         </dependency>
58
59
60         <!-- both runner and native -->
61         <dependency>
62             <groupId>org.ops4j.pax.exam</groupId>
63             <artifactId>pax-exam-junit4</artifactId>
64         </dependency>
65
66         <!-- both runner and native -->
67         <dependency>
68             <groupId>org.ops4j.pax.exam</groupId>
69             <artifactId>pax-exam-link-mvn</artifactId>
70         </dependency>
71
72         <!-- only native -->
73         <!--
74         <dependency>
75             <groupId>org.ops4j.pax.exam</groupId>
76             <artifactId>pax-exam-container-native</artifactId>
77         </dependency>
78         -->
79
80         <!-- only native -->
81         <!-- 
82         <dependency>
83             <groupId>org.ops4j.pax.url</groupId>
84             <artifactId>pax-url-aether</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.ops4j.pax.url</groupId>
88             <artifactId>pax-url-wrap</artifactId>
89         </dependency>
90         -->
91
92         <!-- only native -->
93         <!-- 
94         <dependency>
95             <groupId>org.apache.felix</groupId>
96             <artifactId>org.apache.felix.framework</artifactId>
97         </dependency>
98         -->
99
100
101     </dependencies>
102
103     <build>
104         <plugins>
105             <plugin>
106                 <groupId>org.apache.felix</groupId>
107                 <artifactId>maven-bundle-plugin</artifactId>
108                 <extensions>true</extensions>
109                 <configuration>
110                     <instructions>
111                         <Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
112                     </instructions>
113                 </configuration>
114             </plugin>
115         </plugins>
116     </build>
117
118     <distributionManagement>
119         <site>
120             <id>xmlrouter-site</id>
121             <url>file:${distrib}/cache</url>
122         </site>
123     </distributionManagement>
124
125 </project>