Fixed discard-changes for mdsal netconf, mapping code cleanup.
[controller.git] / opendaylight / md-sal / statistics-manager / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>sal-parent</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8   </parent>
9   <groupId>org.opendaylight.controller.md</groupId>
10   <artifactId>statistics-manager</artifactId>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <dependency>
15       <groupId>com.google.guava</groupId>
16       <artifactId>guava</artifactId>
17     </dependency>
18
19     <dependency>
20       <groupId>junit</groupId>
21       <artifactId>junit</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal-binding-broker-impl</artifactId>
26       <scope>test</scope>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-binding-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller.model</groupId>
34       <artifactId>model-flow-base</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller.model</groupId>
38       <artifactId>model-flow-statistics</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.osgi</groupId>
42       <artifactId>org.osgi.core</artifactId>
43       <scope>provided</scope>
44     </dependency>
45       <dependency>
46           <groupId>org.opendaylight.controller</groupId>
47           <artifactId>sal-binding-config</artifactId>
48       </dependency>
49       <dependency>
50           <groupId>org.opendaylight.controller</groupId>
51           <artifactId>config-api</artifactId>
52       </dependency>
53     <dependency>
54       <groupId>org.slf4j</groupId>
55       <artifactId>slf4j-log4j12</artifactId>
56       <scope>test</scope>
57     </dependency>
58   </dependencies>
59
60   <build>
61     <plugins>
62         <plugin>
63             <groupId>org.apache.felix</groupId>
64             <artifactId>maven-bundle-plugin</artifactId>
65             <configuration>
66                 <instructions>
67                     <Import-Package>*</Import-Package>
68                 </instructions>
69             </configuration>
70         </plugin>
71         <plugin>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>yang-maven-plugin</artifactId>
74             <executions>
75                 <execution>
76                     <id>config</id>
77                     <goals>
78                         <goal>generate-sources</goal>
79                     </goals>
80                     <configuration>
81                         <codeGenerators>
82                             <generator>
83                                 <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
84                                 <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
85                                 <additionalConfiguration>
86                                     <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
87                                 </additionalConfiguration>
88                             </generator>
89                             <generator>
90                                 <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
91                                 <outputBaseDir>${salGeneratorPath}</outputBaseDir>
92                             </generator>
93                         </codeGenerators>
94                         <inspectDependencies>true</inspectDependencies>
95                     </configuration>
96                 </execution>
97             </executions>
98         </plugin>
99     </plugins>
100   </build>
101   <scm>
102     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
103     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
104     <tag>HEAD</tag>
105     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
106   </scm>
107 </project>