Merge "Changing Netvirt Classifier Egress service tables"
[genius.git] / mdsalutil / mdsalutil-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. and others.All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.genius</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.3.0-SNAPSHOT</version>
16     <relativePath>../../commons/config-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>mdsalutil-api</artifactId>
21   <version>0.3.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: genius :: ${project.artifactId}</name>
26
27 <dependencies>
28   <dependency>
29     <groupId>org.opendaylight.yangtools</groupId>
30     <artifactId>util</artifactId>
31   </dependency>
32   <dependency>
33     <groupId>org.opendaylight.openflowplugin.model</groupId>
34     <artifactId>model-flow-base</artifactId>
35     <version>${openflowplugin.version}</version>
36   </dependency>
37   <dependency>
38     <groupId>org.opendaylight.openflowplugin.model</groupId>
39     <artifactId>model-flow-service</artifactId>
40     <version>${openflowplugin.version}</version>
41   </dependency>
42   <dependency>
43     <groupId>org.opendaylight.controller</groupId>
44     <artifactId>liblldp</artifactId>
45     <version>${liblldp.version}</version>
46   </dependency>
47   <dependency>
48     <groupId>org.opendaylight.controller</groupId>
49     <artifactId>sal-binding-api</artifactId>
50   </dependency>
51   <dependency>
52     <groupId>org.opendaylight.openflowplugin</groupId>
53     <artifactId>openflowplugin-extension-nicira</artifactId>
54     <version>${openflowplugin.version}</version>
55   </dependency>
56   <dependency>
57     <groupId>org.opendaylight.openflowplugin</groupId>
58     <artifactId>openflowjava-extension-nicira</artifactId>
59     <version>${openflowplugin.version}</version>
60   </dependency>
61   <dependency>
62     <groupId>org.opendaylight.ovsdb</groupId>
63     <artifactId>hwvtepsouthbound-api</artifactId>
64     <version>${genius.ovsdb.version}</version>
65   </dependency>
66   <dependency>
67     <groupId>org.opendaylight.ovsdb</groupId>
68     <artifactId>utils.config</artifactId>
69     <version>${genius.ovsdb.version}</version>
70   </dependency>
71   <dependency>
72       <groupId>org.opendaylight.infrautils</groupId>
73       <artifactId>counters-api</artifactId>
74       <version>${genius.infrautils.version}</version>
75   </dependency>
76   <dependency>
77       <groupId>org.opendaylight.infrautils</groupId>
78       <artifactId>inject</artifactId>
79       <version>${genius.infrautils.version}</version>
80   </dependency>
81   <dependency>
82     <groupId>org.immutables</groupId>
83     <artifactId>value</artifactId>
84   </dependency>
85   <dependency>
86     <groupId>org.osgi</groupId>
87     <artifactId>org.osgi.core</artifactId>
88   </dependency>
89
90   <!-- Dependencies with <scope>test -->
91   <dependency>
92     <groupId>org.opendaylight.yangtools</groupId>
93     <artifactId>testutils</artifactId>
94     <scope>test</scope>
95   </dependency>
96   <dependency>
97     <groupId>org.awaitility</groupId>
98     <artifactId>awaitility</artifactId>
99     <scope>test</scope>
100   </dependency>
101   <dependency>
102     <groupId>org.opendaylight.mdsal</groupId>
103     <artifactId>mdsal-binding-test-utils</artifactId>
104     <scope>test</scope>
105   </dependency>
106   <dependency>
107     <groupId>org.opendaylight.infrautils</groupId>
108     <artifactId>infrautils-testutils</artifactId>
109     <version>${genius.infrautils.version}</version>
110     <scope>test</scope>
111   </dependency>
112   <dependency>
113     <groupId>com.google.truth</groupId>
114     <artifactId>truth</artifactId>
115     <scope>test</scope>
116   </dependency>
117   <dependency>
118     <groupId>com.google.guava</groupId>
119     <artifactId>guava-testlib</artifactId>
120   </dependency>
121 </dependencies>
122  <build>
123     <plugins>
124       <plugin>
125         <groupId>org.apache.felix</groupId>
126         <artifactId>maven-bundle-plugin</artifactId>
127         <extensions>true</extensions>
128         <configuration>
129           <instructions>
130             <Bundle-Activator>org.opendaylight.genius.datastoreutils.Activator</Bundle-Activator>
131             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
132             <Embed-Transitive>true</Embed-Transitive>
133           </instructions>
134         </configuration>
135       </plugin>
136      <plugin>
137        <groupId>org.apache.maven.plugins</groupId>
138        <artifactId>maven-jar-plugin</artifactId>
139        <executions>
140          <execution>
141            <goals>
142              <goal>test-jar</goal>
143            </goals>
144          </execution>
145        </executions>
146      </plugin>
147      <plugin>
148       <groupId>org.apache.maven.plugins</groupId>
149       <artifactId>maven-checkstyle-plugin</artifactId>
150       <configuration>
151         <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
152       </configuration>
153     </plugin>
154     </plugins>
155   </build>
156 </project>