Merge "Initial implementation of the ClusteredDataStore"
[controller.git] / opendaylight / md-sal / model / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4     <parent>
5         <groupId>org.opendaylight.controller</groupId>
6         <artifactId>sal-parent</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <scm>
10       <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
11       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
12       <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
13     </scm>
14
15     <modelVersion>4.0.0</modelVersion>
16     <groupId>org.opendaylight.controller.model</groupId>
17     <artifactId>model-parent</artifactId>
18     <packaging>pom</packaging>
19
20     <properties>
21         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22         <bundle.plugin.version>2.3.7</bundle.plugin.version>
23     </properties>
24
25     <modules>
26         <module>model-inventory</module>
27         <module>model-flow-base</module>
28         <module>model-flow-service</module>
29         <module>model-flow-statistics</module>
30         <module>model-flow-management</module>
31         <module>model-topology</module>
32     </modules>
33
34     <build>
35         <plugins>
36             <plugin>
37                 <groupId>org.apache.felix</groupId>
38                 <artifactId>maven-bundle-plugin</artifactId>
39                 <extensions>true</extensions>
40                 <configuration>
41                     <instructions>
42                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
43                     </instructions>
44                 </configuration>
45             </plugin>
46             <plugin>
47                 <groupId>org.opendaylight.yangtools</groupId>
48                 <artifactId>yang-maven-plugin</artifactId>
49                 <version>${yang.version}</version>
50                 <executions>
51                     <execution>
52                         <goals>
53                             <goal>generate-sources</goal>
54                         </goals>
55                         <configuration>
56                             <yangFilesRootDir>src/main/yang</yangFilesRootDir>
57                             <codeGenerators>
58                                 <generator>
59                                     <codeGeneratorClass>
60                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
61                                     </codeGeneratorClass>
62                                     <outputBaseDir>
63                                         target/generated-sources/sal
64                                     </outputBaseDir>
65                                 </generator>
66                             </codeGenerators>
67                             <inspectDependencies>true</inspectDependencies>
68                         </configuration>
69                     </execution>
70                 </executions>
71                 <dependencies>
72                     <dependency>
73                         <groupId>org.opendaylight.yangtools</groupId>
74                         <artifactId>maven-sal-api-gen-plugin</artifactId>
75                         <version>${yang.codegen.version}</version>
76                         <type>jar</type>
77                     </dependency>
78                     <dependency>
79                         <groupId>org.opendaylight.yangtools</groupId>
80                         <artifactId>yang-binding</artifactId>
81                         <version>${yang.codegen.version}</version>
82                         <type>jar</type>
83                     </dependency>
84                 </dependencies>
85             </plugin>
86             <plugin>
87                 <groupId>org.codehaus.mojo</groupId>
88                 <artifactId>build-helper-maven-plugin</artifactId>
89                 <version>1.7</version>
90                 <executions>
91                     <execution>
92                         <phase>generate-sources</phase>
93                         <goals>
94                             <goal>add-source</goal>
95                         </goals>
96                         <configuration>
97                             <sources>
98                                 <source>target/generated-sources/sal</source>
99                             </sources>
100                         </configuration>
101                     </execution>
102                 </executions>
103             </plugin>
104         </plugins>
105     </build>
106
107     <dependencies>
108         <dependency>
109             <groupId>org.opendaylight.yangtools</groupId>
110             <artifactId>yang-binding</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.yangtools</groupId>
114             <artifactId>yang-common</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.yangtools.model</groupId>
118             <artifactId>ietf-inet-types</artifactId>
119             <version>2010.09.24.2-SNAPSHOT</version>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.yangtools.model</groupId>
123             <artifactId>ietf-yang-types</artifactId>
124             <version>2010.09.24.2-SNAPSHOT</version>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.yangtools.model</groupId>
128             <artifactId>yang-ext</artifactId>
129             <version>2013.09.07.1-SNAPSHOT</version>
130         </dependency>
131     </dependencies>
132
133 </project>