Fixed bugs while getting demo.py to work.
[affinity.git] / affinity / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5
6   <parent>
7     <groupId>org.opendaylight.affinity</groupId>
8     <artifactId>affinityParent</artifactId>
9     <version>0.4.1-SNAPSHOT</version>
10     <relativePath>../..</relativePath>
11   </parent>
12
13   <groupId>org.opendaylight.affinity</groupId>
14   <artifactId>affinity</artifactId>
15   <version>0.4.1-SNAPSHOT</version>
16   <packaging>bundle</packaging>
17
18   <build>
19     <pluginManagement>
20       <plugins>
21         <plugin>
22           <groupId>org.jacoco</groupId>
23           <artifactId>jacoco-maven-plugin</artifactId>
24           <version>0.5.3.201107060350</version>
25         </plugin>
26       </plugins>
27     </pluginManagement>
28     <plugins>
29       <plugin>
30         <groupId>org.apache.felix</groupId>
31         <artifactId>maven-bundle-plugin</artifactId>
32         <version>2.3.6</version>
33         <extensions>true</extensions>
34         <configuration>
35           <instructions>
36             <Export-Package>
37               org.opendaylight.affinity.affinity
38             </Export-Package>
39             <Import-Package>
40               javax.xml.bind.annotation,
41               org.opendaylight.controller.clustering.services,
42               org.opendaylight.controller.configuration,
43               org.opendaylight.controller.sal.core,
44               org.opendaylight.controller.sal.utils,
45               org.opendaylight.controller.sal.packet,
46               org.opendaylight.controller.sal.inventory,
47               org.opendaylight.controller.sal.flowprogrammer,
48               !org.codehaus.enunciate.jaxrs,
49               org.slf4j
50             </Import-Package>
51           </instructions>
52           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
53         </configuration>
54       </plugin>
55       <plugin>
56         <groupId>org.jacoco</groupId>
57         <artifactId>jacoco-maven-plugin</artifactId>
58         <configuration>
59           <includes>org.opendaylight.controller.*</includes>
60         </configuration>
61         <executions>
62           <execution>
63             <id>pre-test</id>
64             <goals>
65               <goal>prepare-agent</goal>
66             </goals>
67           </execution>
68           <execution>
69             <id>post-test</id>
70             <phase>test</phase>
71             <goals>
72               <goal>report</goal>
73             </goals>
74           </execution>
75         </executions>
76       </plugin>
77     </plugins>
78   </build>
79   <dependencies>
80    <dependency>
81       <groupId>junit</groupId>
82       <artifactId>junit</artifactId>
83       <version>${junit.version}</version>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>clustering.services</artifactId>
89       <version>0.4.0-SNAPSHOT</version>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>configuration</artifactId>
94       <version>0.4.0-SNAPSHOT</version>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>sal</artifactId>
99       <version>0.5.0-SNAPSHOT</version>
100     </dependency>
101     <dependency>
102       <groupId>org.codehaus.enunciate</groupId>
103       <artifactId>enunciate-core-annotations</artifactId>
104       <version>${enunciate.version}</version>
105     </dependency>
106   </dependencies>
107 </project>