Changed the current WIP Pipeline Orchestrator to a more simplified Static Pipeline...
[ovsdb.git] / openstack / net-virt-providers / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>commons</artifactId>
7         <groupId>org.opendaylight.ovsdb</groupId>
8         <version>1.2.0-SNAPSHOT</version>
9         <relativePath>../../commons/parent/pom.xml</relativePath>
10     </parent>
11     <modelVersion>4.0.0</modelVersion>
12
13     <artifactId>openstack.net-virt-providers</artifactId>
14     <version>1.0.0-SNAPSHOT</version>
15     <name>Opendaylight OVS Network Virtualization Providers</name>
16     <packaging>bundle</packaging>
17
18     <dependencies>
19         <dependency>
20             <groupId>org.opendaylight.controller</groupId>
21             <artifactId>sal</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>forwardingrulesmanager</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>sal-binding-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>sal-common-util</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.controller</groupId>
37             <artifactId>switchmanager</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller.model</groupId>
41             <artifactId>model-flow-base</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller.model</groupId>
45             <artifactId>model-flow-service</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller.model</groupId>
49             <artifactId>model-inventory</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools</groupId>
53             <artifactId>yang-binding</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.ovsdb</groupId>
57             <artifactId>plugin</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.ovsdb</groupId>
61             <artifactId>openstack.net-virt</artifactId>
62         </dependency>
63         <dependency>
64           <groupId>org.opendaylight.ovsdb</groupId>
65           <artifactId>utils.mdsal-openflow</artifactId>
66           <version>1.0.0-SNAPSHOT</version>
67         </dependency>
68         <dependency>
69           <groupId>junit</groupId>
70           <artifactId>junit</artifactId>
71           <scope>compile</scope>
72         </dependency>
73
74     </dependencies>
75
76     <build>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.felix</groupId>
80                 <artifactId>maven-bundle-plugin</artifactId>
81                 <version>2.3.6</version>
82                 <extensions>true</extensions>
83                 <configuration>
84                     <instructions>
85                         <Import-Package>
86                             org.opendaylight.controller.switchmanager,
87                             org.opendaylight.controller.forwardingrulesmanager,
88                             org.opendaylight.controller.sal.core,
89                             org.opendaylight.controller.sal.utils,
90                             org.opendaylight.controller.sal.action,
91                             org.opendaylight.ovsdb.plugin.api,
92                             org.opendaylight.ovsdb.lib.notation,
93                             org.opendaylight.ovs.nx.sal.*;resolution:="optional",
94                             org.opendaylight.yang.gen.v1.urn.opendaylight.ovs.nx.*;resolution:="optional",
95                             org.opendaylight.openflowplugin.*;resolution:="optional",
96                             org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.*;resolution:="optional",
97                             org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.*;resolution:="optional",
98                             org.opendaylight.controller.sal.binding.api,
99                             org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819,
100                             org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes,
101                             org.opendaylight.yangtools.yang.binding,
102                             org.apache.felix.dm,
103                             org.slf4j,
104                             org.osgi.framework,
105                             *
106                         </Import-Package>
107                         <Embed-Dependency>utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
108                         <Embed-Transitive>true</Embed-Transitive>
109                         <Bundle-Activator>org.opendaylight.ovsdb.openstack.netvirt.providers.Activator</Bundle-Activator>
110                     </instructions>
111                 </configuration>
112             </plugin>
113             <plugin>
114                 <groupId>org.apache.maven.plugins</groupId>
115                 <artifactId>maven-checkstyle-plugin</artifactId>
116             </plugin>
117             <plugin>
118                 <groupId>org.apache.maven.plugins</groupId>
119                 <artifactId>maven-failsafe-plugin</artifactId>
120             </plugin>
121             <plugin>
122                 <groupId>org.apache.maven.plugins</groupId>
123                 <artifactId>maven-surefire-plugin</artifactId>
124             </plugin>
125             <plugin>
126                 <groupId>org.jacoco</groupId>
127                 <artifactId>jacoco-maven-plugin</artifactId>
128             </plugin>
129         </plugins>
130     </build>
131 </project>