Merge "Remove unnecessary warn log from config subsystem"
[controller.git] / opendaylight / md-sal / sal-remote / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <artifactId>sal-remote</artifactId>
9     <packaging>jar</packaging>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14       <tag>HEAD</tag>
15   </scm>
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.apache.felix</groupId>
20                 <artifactId>maven-bundle-plugin</artifactId>
21                 <extensions>true</extensions>
22             </plugin>
23             <plugin>
24                 <groupId>org.opendaylight.yangtools</groupId>
25                 <artifactId>yang-maven-plugin</artifactId>
26                 <version>${yangtools.version}</version>
27                 <executions>
28                     <execution>
29                         <id>sal-remote</id>
30                         <goals>
31                             <goal>generate-sources</goal>
32                         </goals>
33                         <configuration>
34                             <yangFilesRootDir>src/main/yang</yangFilesRootDir>
35                             <codeGenerators>
36                                 <generator>
37                                     <codeGeneratorClass>
38                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
39                                     </codeGeneratorClass>
40                                     <outputBaseDir>
41                                         target/generated-sources/
42                                     </outputBaseDir>
43                                 </generator>
44                                 <generator>
45                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
46                                     <outputBaseDir>target/site/models</outputBaseDir>
47                                 </generator>
48                             </codeGenerators>
49                             <inspectDependencies>true</inspectDependencies>
50                         </configuration>
51                     </execution>
52                 </executions>
53                 <dependencies>
54                     <dependency>
55                         <groupId>org.opendaylight.yangtools</groupId>
56                         <artifactId>maven-sal-api-gen-plugin</artifactId>
57                         <version>${yangtools.version}</version>
58                         <type>jar</type>
59                     </dependency>
60                 </dependencies>
61             </plugin>
62             <plugin>
63                 <groupId>org.codehaus.mojo</groupId>
64                 <artifactId>build-helper-maven-plugin</artifactId>
65                 <version>1.8</version>
66                 <executions>
67                     <execution>
68                         <id>add-source</id>
69                         <phase>generate-sources</phase>
70                         <goals>
71                             <goal>add-source</goal>
72                         </goals>
73                         <configuration>
74                             <sources>
75                                 <source>${project.build.directory}/generated-sources/</source>
76                             </sources>
77                         </configuration>
78                     </execution>
79                 </executions>
80             </plugin>
81         </plugins>
82     </build>
83
84     <dependencies>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-binding-api</artifactId>
88             <version>1.1-SNAPSHOT</version>
89         </dependency>
90     </dependencies>
91 </project>