Add flow pushing rules.
[affinity.git] / affinity / implementation / 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.implementation</artifactId>
15   <version>0.4.0-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             <Import-Package>
37               org.opendaylight.affinity.affinity,
38               org.opendaylight.affinity.l2agent,
39               org.opendaylight.controller.clustering.services,
40               org.opendaylight.controller.configuration,
41               org.opendaylight.controller.hosttracker,
42               org.opendaylight.controller.hosttracker.hostAware,
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.opendaylight.controller.sal.match,
49               org.opendaylight.controller.sal.action,
50               org.opendaylight.controller.switchmanager,
51               org.slf4j,
52               org.apache.felix.dm,
53               org.eclipse.osgi.framework.console,
54               org.osgi.framework,
55               javax.xml.bind.annotation,
56               org.apache.commons.lang3.builder
57             </Import-Package>
58             <Bundle-Activator>
59               org.opendaylight.affinity.affinity.internal.Activator
60             </Bundle-Activator>
61           </instructions>
62           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
63         </configuration>
64       </plugin>
65       <plugin>
66         <groupId>org.jacoco</groupId>
67         <artifactId>jacoco-maven-plugin</artifactId>
68         <configuration>
69           <includes>org.opendaylight.controller.*</includes>
70         </configuration>
71         <executions>
72           <execution>
73             <id>pre-test</id>
74             <goals>
75               <goal>prepare-agent</goal>
76             </goals>
77           </execution>
78           <execution>
79             <id>post-test</id>
80             <phase>test</phase>
81             <goals>
82               <goal>report</goal>
83             </goals>
84           </execution>
85         </executions>
86       </plugin>
87     </plugins>
88   </build>
89   <dependencies>
90     <dependency>
91       <groupId>junit</groupId>
92       <artifactId>junit</artifactId>
93       <version>${junit.version}</version>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>clustering.services</artifactId>
99       <version>0.4.0-SNAPSHOT</version>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller</groupId>
103       <artifactId>configuration</artifactId>
104       <version>0.4.0-SNAPSHOT</version>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.controller</groupId>
108       <artifactId>sal</artifactId>
109       <version>0.5.0-SNAPSHOT</version>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.controller</groupId>
113       <artifactId>forwardingrulesmanager</artifactId>
114       <version>0.4.0-SNAPSHOT</version>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.controller</groupId>
118       <artifactId>hosttracker</artifactId>
119       <version>0.4.0-SNAPSHOT</version>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.affinity</groupId>
123       <artifactId>affinity</artifactId>
124       <version>0.4.0-SNAPSHOT</version>
125     </dependency>
126     <dependency>
127 <<<<<<< HEAD
128       <groupId>org.opendaylight.affinity</groupId>
129       <artifactId>l2agent</artifactId>
130 =======
131       <groupId>org.opendaylight.controller</groupId>
132       <artifactId>tutorial_L2_forwarding</artifactId>
133 >>>>>>> Add flow pushing rules.
134       <version>0.4.0-SNAPSHOT</version>
135     </dependency>
136   </dependencies>
137 </project>