e977ba726a41718713d27040054000fffbe008d9
[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.4.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.controller</groupId>
42       <artifactId>yang-jmx-generator-plugin</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>yang-binding</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>yang-common</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.osgi</groupId>
54       <artifactId>org.osgi.core</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59     </dependency>
60   </dependencies>
61   <build>
62     <plugins>
63       <plugin>
64         <groupId>org.apache.felix</groupId>
65         <artifactId>maven-bundle-plugin</artifactId>
66       </plugin>
67       <plugin>
68         <groupId>org.opendaylight.yangtools</groupId>
69         <artifactId>yang-maven-plugin</artifactId>
70         <dependencies>
71           <dependency>
72             <groupId>org.opendaylight.mdsal</groupId>
73             <artifactId>maven-sal-api-gen-plugin</artifactId>
74             <version>${mdsal.model.version}</version>
75             <type>jar</type>
76           </dependency>
77         </dependencies>
78         <executions>
79           <execution>
80             <goals>
81               <goal>generate-sources</goal>
82             </goals>
83             <configuration>
84               <yangFilesRootDir>src/main/yang</yangFilesRootDir>
85               <codeGenerators>
86                 <generator>
87                   <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
88                   <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
89                   <additionalConfiguration>
90                     <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
91                   </additionalConfiguration>
92                 </generator>
93                 <generator>
94                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
95                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
96                 </generator>
97               </codeGenerators>
98               <inspectDependencies>true</inspectDependencies>
99             </configuration>
100           </execution>
101         </executions>
102       </plugin>
103     </plugins>
104   </build>
105   <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:XSQL</url>
106   <scm>
107     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
108     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
109     <tag>HEAD</tag>
110     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:XSQL</url>
111   </scm>
112 </project>