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