c1e2fecedd2ca3daf1e5dac2722ec7649442e3cd
[controller.git] / opendaylight / md-sal / clustered-data-store / implementation / 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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.controller</groupId>
7         <artifactId>sal-parent</artifactId>
8         <version>1.0-SNAPSHOT</version>
9         <relativePath>../..</relativePath>
10     </parent>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15         <tag>HEAD</tag>
16     </scm>
17
18     <artifactId>clustered-datastore-implementation</artifactId>
19     <version>0.4.1-SNAPSHOT</version>
20     <packaging>bundle</packaging>
21
22     <build>
23         <plugins>
24             <plugin>
25                 <groupId>org.apache.felix</groupId>
26                 <artifactId>maven-bundle-plugin</artifactId>
27                 <version>${bundle.plugin.version}</version>
28                 <extensions>true</extensions>
29                 <configuration>
30                     <instructions>
31                     </instructions>
32                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
33                 </configuration>
34             </plugin>
35             <plugin>
36                 <groupId>org.opendaylight.yangtools</groupId>
37                 <artifactId>yang-maven-plugin</artifactId>
38                 <version>${yangtools.version}</version>
39                 <executions>
40                     <execution>
41                         <goals>
42                             <goal>generate-sources</goal>
43                         </goals>
44                         <configuration>
45                             <codeGenerators>
46                                 <generator>
47                                     <codeGeneratorClass>
48                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
49                                     </codeGeneratorClass>
50                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
51                                     <additionalConfiguration>
52                                         <namespaceToPackage1>
53                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
54                                         </namespaceToPackage1>
55                                     </additionalConfiguration>
56                                 </generator>
57                                 <generator>
58                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
59                                     <outputBaseDir>target/site/models</outputBaseDir>
60                                 </generator>
61                             </codeGenerators>
62                             <inspectDependencies>true</inspectDependencies>
63                         </configuration>
64                     </execution>
65                 </executions>
66                 <dependencies>
67                     <dependency>
68                         <groupId>org.opendaylight.controller</groupId>
69                         <artifactId>yang-jmx-generator-plugin</artifactId>
70                         <version>0.2.3-SNAPSHOT</version>
71                     </dependency>
72                     <dependency>
73                         <groupId>org.opendaylight.yangtools</groupId>
74                         <artifactId>maven-sal-api-gen-plugin</artifactId>
75                         <version>0.6.1</version>
76                         <type>jar</type>
77                     </dependency>
78                 </dependencies>
79             </plugin>
80         </plugins>
81     </build>
82     <dependencies>
83
84         <dependency>
85             <groupId>com.google.guava</groupId>
86             <artifactId>guava</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>sal-core-api</artifactId>
91             <version>1.0-SNAPSHOT</version>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal-common-util</artifactId>
96             <version>1.0-SNAPSHOT</version>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>config-api</artifactId>
101             <version>0.2.3-SNAPSHOT</version>
102         </dependency>
103
104         <dependency>
105             <groupId>org.opendaylight.controller</groupId>
106             <artifactId>sal</artifactId>
107             <version>0.7.0-SNAPSHOT</version>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.controller</groupId>
111             <artifactId>clustering.services</artifactId>
112             <version>0.5.0-SNAPSHOT</version>
113         </dependency>
114         <dependency>
115             <groupId>junit</groupId>
116             <artifactId>junit</artifactId>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>org.mockito</groupId>
121             <artifactId>mockito-all</artifactId>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.yangtools</groupId>
126             <artifactId>yang-binding</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.yangtools</groupId>
130             <artifactId>yang-data-api</artifactId>
131         </dependency>
132
133     </dependencies>
134 </project>