Merge "Bug 2021 - NORMAL and CONTROLLER flows should not use hard coded strings"
[netvirt.git] / ovs-sfc / 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
6     <modelVersion>4.0.0</modelVersion>
7     <parent>
8         <groupId>org.opendaylight.ovsdb</groupId>
9         <artifactId>commons</artifactId>
10         <version>1.3.0-SNAPSHOT</version>
11         <relativePath>../commons/parent</relativePath>
12     </parent>
13     <artifactId>ovssfc</artifactId>
14     <name>OpenDaylight OVS Service Function Chaining</name>
15     <version>0.1.0-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17
18     <properties>
19         <jmxGeneratorPath>target/generated-sources/config</jmxGeneratorPath>
20         <ietf.model.version>2010.09.24.7-SNAPSHOT</ietf.model.version>
21         <ietf.yang.types.version>2013.07.15.7-SNAPSHOT</ietf.yang.types.version>
22     </properties>
23
24     <dependencies>
25         <dependency>
26             <groupId>ch.qos.logback</groupId>
27             <artifactId>logback-classic</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>ch.qos.logback</groupId>
31             <artifactId>logback-core</artifactId>
32         </dependency>
33         <!--<dependency>
34             <groupId>com.google.guava</groupId>
35             <artifactId>guava</artifactId>
36         </dependency>-->
37         <dependency>
38             <groupId>junit</groupId>
39             <artifactId>junit</artifactId>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.mockito</groupId>
44             <artifactId>mockito-all</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>sal-binding-config</artifactId>
50             <version>${mdsal.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>sal-common-api</artifactId>
55             <version>${mdsal.version}</version>
56         </dependency>
57         <!--<dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-core-api</artifactId>
60             <version>${mdsal.version}</version>
61         </dependency>-->
62         <dependency>
63             <groupId>org.opendaylight.controller.model</groupId>
64             <artifactId>model-flow-base</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.controller.model</groupId>
68             <artifactId>model-flow-service</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.controller.model</groupId>
72             <artifactId>model-inventory</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.ovsdb</groupId>
76             <artifactId>plugin</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.ovsdb</groupId>
80             <artifactId>utils.config</artifactId>
81             <version>${ovsdb.utils.config.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.ovsdb</groupId>
85             <artifactId>utils.mdsal-openflow</artifactId>
86             <version>${utils.mdsal.openflow.version}</version>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.sfc</groupId>
90             <artifactId>sfc-model</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.yangtools.model</groupId>
94             <artifactId>ietf-inet-types</artifactId>
95             <version>${ietf.model.version}</version>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.yangtools.model</groupId>
99             <artifactId>ietf-yang-types</artifactId>
100             <version>${ietf.model.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.yangtools.model</groupId>
104             <artifactId>ietf-yang-types-20130715</artifactId>
105             <version>${ietf.yang.types.version}</version>
106         </dependency>
107     </dependencies>
108
109     <build>
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.felix</groupId>
113                 <artifactId>maven-bundle-plugin</artifactId>
114                 <version>${bundle.plugin.version}</version>
115                 <extensions>true</extensions>
116                 <configuration>
117                     <instructions>
118                         <Embed-Dependency>utils.config,utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
119                         <Embed-Transitive>true</Embed-Transitive>
120                         <Include-Resource>
121                             /OSGI-OPT/ovs-sfc/53-ovssfc-provider.xml=${project.basedir}/src/main/resources/initial/53-ovssfc-provider.xml,{maven-resources}
122                         </Include-Resource>
123                     </instructions>
124                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
125                 </configuration>
126             </plugin>
127             <plugin>
128                 <groupId>org.opendaylight.yangtools</groupId>
129                 <artifactId>yang-maven-plugin</artifactId>
130                 <executions>
131                     <execution>
132                         <id>config</id>
133                         <goals>
134                             <goal>generate-sources</goal>
135                         </goals>
136                         <configuration>
137                             <codeGenerators>
138                                 <generator>
139                                     <codeGeneratorClass>
140                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
141                                     </codeGeneratorClass>
142                                     <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
143                                     <additionalConfiguration>
144                                         <namespaceToPackage1>
145                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
146                                         </namespaceToPackage1>
147                                     </additionalConfiguration>
148                                 </generator>
149                             </codeGenerators>
150                             <inspectDependencies>true</inspectDependencies>
151                         </configuration>
152                     </execution>
153                 </executions>
154                 <dependencies>
155                     <dependency>
156                         <groupId>org.opendaylight.controller</groupId>
157                         <artifactId>yang-jmx-generator-plugin</artifactId>
158                         <version>${controller.config.version}</version>
159                     </dependency>
160                     <dependency>
161                         <groupId>org.opendaylight.yangtools</groupId>
162                         <artifactId>maven-sal-api-gen-plugin</artifactId>
163                         <version>${yangtools.version}</version>
164                     </dependency>
165                 </dependencies>
166             </plugin>
167             <plugin>
168                 <groupId>org.codehaus.mojo</groupId>
169                 <artifactId>build-helper-maven-plugin</artifactId>
170             </plugin>
171             <plugin>
172                 <groupId>org.apache.maven.plugins</groupId>
173                 <artifactId>maven-checkstyle-plugin</artifactId>
174             </plugin>
175             <plugin>
176                 <groupId>org.jacoco</groupId>
177                 <artifactId>jacoco-maven-plugin</artifactId>
178             </plugin>
179         </plugins>
180     </build>
181
182     <scm>
183         <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
184         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
185         <tag>HEAD</tag>
186         <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
187     </scm>
188 </project>