c1db80ebe9f7918d4db9a86b3414c9ca30633845
[xmlrouter] / listener / 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-listener</artifactId>
12     <packaging>bundle</packaging>
13     <name>/xmlrouter/listener</name>
14     <url>http://wamblee.org</url>
15     
16     <dependencies>
17             <dependency>
18                     <groupId>org.wamblee.xmlrouter</groupId>
19                         <artifactId>xmlrouter-config</artifactId>
20                         <version>0.1.0-SNAPSHOT</version>
21                 </dependency>
22                 <dependency>
23             <groupId>org.wamblee.xmlrouter</groupId>
24             <artifactId>xmlrouter-publish</artifactId>
25             <version>0.1.0-SNAPSHOT</version>
26         </dependency>
27         <dependency>
28             <groupId>junit</groupId>
29             <artifactId>junit</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.mockito</groupId>
33             <artifactId>mockito-all</artifactId>
34         </dependency>        
35     </dependencies>
36     
37     <build>
38         <plugins>
39             <plugin>
40                 <groupId>org.apache.felix</groupId>
41                 <artifactId>maven-bundle-plugin</artifactId>
42                 <extensions>true</extensions>
43                 <configuration>
44                     <instructions>
45                         <Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
46                     </instructions>
47                 </configuration>
48             </plugin>
49         </plugins>
50     </build>
51     
52     <distributionManagement>
53         <site>
54             <id>xmlrouter-site</id>
55             <url>file:${distrib}/cache</url>
56         </site>
57     </distributionManagement>
58
59 </project>