Merge "Fixed for bug : 1171 - issue while creating subnet"
[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.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-dom-xsql</artifactId>
10   <packaging>bundle</packaging>
11   <name>sal-dom-xsql</name>
12   <description>XSQL language</description>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>config-api</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>sal-binding-api</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal-binding-config</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal-common-util</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal-core-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>yang-jmx-generator-plugin</artifactId>
38       <version>${config.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</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   </dependencies>
53   <build>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.felix</groupId>
57         <artifactId>maven-bundle-plugin</artifactId>
58       </plugin>
59       <plugin>
60         <groupId>org.opendaylight.yangtools</groupId>
61         <artifactId>yang-maven-plugin</artifactId>
62         <dependencies>
63           <dependency>
64             <groupId>org.opendaylight.yangtools</groupId>
65             <artifactId>maven-sal-api-gen-plugin</artifactId>
66             <version>${yangtools.version}</version>
67             <type>jar</type>
68           </dependency>
69         </dependencies>
70         <executions>
71           <execution>
72             <goals>
73               <goal>generate-sources</goal>
74             </goals>
75             <configuration>
76               <yangFilesRootDir>src/main/yang</yangFilesRootDir>
77               <codeGenerators>
78                 <generator>
79                   <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
80                   <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
81                   <additionalConfiguration>
82                     <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
83                   </additionalConfiguration>
84                 </generator>
85                 <generator>
86                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
87                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
88                 </generator>
89               </codeGenerators>
90               <inspectDependencies>true</inspectDependencies>
91             </configuration>
92           </execution>
93         </executions>
94       </plugin>
95     </plugins>
96   </build>
97   <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:XSQL</url>
98   <scm>
99     <developerConnection>Sharon Aicler</developerConnection>
100     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:XSQL</url>
101   </scm>
102 </project>