Turned the API packages into bundles.
[xmlrouter] / config / 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-config</artifactId>
12     <packaging>bundle</packaging>
13     <name>/xmlrouter/config</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</groupId>
24             <artifactId>wamblee-support-general</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>junit</groupId>
28             <artifactId>junit</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.mockito</groupId>
32             <artifactId>mockito-all</artifactId>
33         </dependency>        
34     </dependencies>
35     
36     <build>
37         <plugins>
38             <plugin>
39                 <groupId>org.apache.felix</groupId>
40                 <artifactId>maven-bundle-plugin</artifactId>
41                 <extensions>true</extensions>
42                 <configuration>
43                     <instructions>
44                         <Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
45                     </instructions>
46                 </configuration>
47             </plugin>
48         </plugins>
49     </build>
50     
51     <distributionManagement>
52         <site>
53             <id>xmlrouter-site</id>
54             <url>file:${distrib}/cache</url>
55         </site>
56     </distributionManagement>
57
58 </project>