Merge "updated test coverage for AutodetectDirectoryPersister test coverage raised...
[controller.git] / opendaylight / md-sal / sal-dom-api / 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-core-api</artifactId>
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       <tag>HEAD</tag>
14   </scm>
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.apache.felix</groupId>
19                 <artifactId>maven-bundle-plugin</artifactId>
20                 <extensions>true</extensions>
21             </plugin>
22             <plugin>
23                 <groupId>org.opendaylight.yangtools</groupId>
24                 <artifactId>yang-maven-plugin</artifactId>
25                 <version>${yangtools.version}</version>
26                 <executions>
27                     <execution>
28                         <goals>
29                             <goal>generate-sources</goal>
30                         </goals>
31                         <configuration>
32                             <codeGenerators>
33                                 <generator>
34                                     <codeGeneratorClass>
35                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
36                                     </codeGeneratorClass>
37                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
38                                     <additionalConfiguration>
39                                         <namespaceToPackage1>
40                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
41                                         </namespaceToPackage1>
42                                     </additionalConfiguration>
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.controller</groupId>
56                         <artifactId>yang-jmx-generator-plugin</artifactId>
57                         <version>0.2.4-SNAPSHOT</version>
58                     </dependency>
59                     <dependency>
60                         <groupId>org.opendaylight.yangtools</groupId>
61                         <artifactId>maven-sal-api-gen-plugin</artifactId>
62                         <version>${yangtools.version}</version>
63                         <type>jar</type>
64                     </dependency>
65                 </dependencies>
66             </plugin>
67             <plugin>
68                 <groupId>org.codehaus.mojo</groupId>
69                 <artifactId>build-helper-maven-plugin</artifactId>
70                 <version>1.8</version>
71                 <executions>
72                     <execution>
73                         <id>add-source</id>
74                         <phase>generate-sources</phase>
75                         <goals>
76                             <goal>add-source</goal>
77                         </goals>
78                         <configuration>
79                             <sources>
80                                 <source>${project.build.directory}/generated-sources/config</source>
81                             </sources>
82                         </configuration>
83                     </execution>
84                 </executions>
85             </plugin>
86         </plugins>
87     </build>
88     <dependencies>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>sal-common</artifactId>
92             <version>1.1-SNAPSHOT</version>
93         </dependency>
94
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>config-api</artifactId>
98             <version>0.2.4-SNAPSHOT</version>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.yangtools</groupId>
102             <artifactId>yang-data-api</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.controller</groupId>
106             <artifactId>sal-common-api</artifactId>
107             <version>${project.version}</version>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.yangtools</groupId>
111             <artifactId>yang-model-api</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.osgi</groupId>
115             <artifactId>org.osgi.core</artifactId>
116             <version>5.0.0</version>
117         </dependency>
118     </dependencies>
119     <packaging>bundle</packaging>
120 </project>