Bump versions by 0.1.0 for next dev cycle
[controller.git] / opendaylight / md-sal / sal-dom-xsql / 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.5.0-SNAPSHOT</version>
8   </parent>
9   <!-- FIXME Use org.opendaylight.mdsal:binding-parent -->
10   <artifactId>sal-dom-xsql</artifactId>
11   <packaging>bundle</packaging>
12   <name>sal-dom-xsql</name>
13   <description>XSQL language</description>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>sal-binding-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal-binding-config</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-common-util</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-core-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>yang-jmx-generator</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.mdsal</groupId>
42       <artifactId>yang-binding</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-common</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.osgi</groupId>
50       <artifactId>org.osgi.core</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55     </dependency>
56   </dependencies>
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.felix</groupId>
61         <artifactId>maven-bundle-plugin</artifactId>
62       </plugin>
63       <plugin>
64         <groupId>org.opendaylight.yangtools</groupId>
65         <artifactId>yang-maven-plugin</artifactId>
66         <dependencies>
67           <dependency>
68             <groupId>org.opendaylight.mdsal</groupId>
69             <artifactId>maven-sal-api-gen-plugin</artifactId>
70             <version>${mdsal.model.version}</version>
71             <type>jar</type>
72           </dependency>
73         </dependencies>
74         <executions>
75           <execution>
76             <goals>
77               <goal>generate-sources</goal>
78             </goals>
79             <configuration>
80               <yangFilesRootDir>src/main/yang</yangFilesRootDir>
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   <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:XSQL</url>
102   <scm>
103     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
104     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
105     <tag>HEAD</tag>
106     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:XSQL</url>
107   </scm>
108 </project>