Merge "Improve scale of AsyncXListenerBase"
[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.2.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.2.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
86   <!-- Dependencies with <scope>test -->
87   <dependency>
88     <groupId>org.opendaylight.yangtools</groupId>
89     <artifactId>testutils</artifactId>
90     <scope>test</scope>
91   </dependency>
92   <dependency>
93     <groupId>org.awaitility</groupId>
94     <artifactId>awaitility</artifactId>
95     <scope>test</scope>
96   </dependency>
97   <dependency>
98     <groupId>org.opendaylight.mdsal</groupId>
99     <artifactId>mdsal-binding-test-utils</artifactId>
100     <scope>test</scope>
101   </dependency>
102   <dependency>
103     <groupId>org.opendaylight.infrautils</groupId>
104     <artifactId>infrautils-testutils</artifactId>
105     <version>${genius.infrautils.version}</version>
106     <scope>test</scope>
107   </dependency>
108   <dependency>
109     <groupId>com.google.truth</groupId>
110     <artifactId>truth</artifactId>
111     <scope>test</scope>
112   </dependency>
113 </dependencies>
114  <build>
115     <plugins>
116       <plugin>
117         <groupId>org.apache.felix</groupId>
118         <artifactId>maven-bundle-plugin</artifactId>
119         <extensions>true</extensions>
120         <configuration>
121           <instructions>
122             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
123             <Embed-Transitive>true</Embed-Transitive>
124           </instructions>
125         </configuration>
126       </plugin>
127      <plugin>
128        <groupId>org.apache.maven.plugins</groupId>
129        <artifactId>maven-jar-plugin</artifactId>
130        <executions>
131          <execution>
132            <goals>
133              <goal>test-jar</goal>
134            </goals>
135          </execution>
136        </executions>
137      </plugin>
138      <plugin>
139       <groupId>org.apache.maven.plugins</groupId>
140       <artifactId>maven-checkstyle-plugin</artifactId>
141       <configuration>
142         <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
143       </configuration>
144     </plugin>
145     </plugins>
146   </build>
147 </project>