Bug 1029: Remove dead code: sal-schema-repository-api
[controller.git] / opendaylight / md-sal / clustered-data-store / implementation / 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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.controller</groupId>
7         <artifactId>sal-parent</artifactId>
8         <version>1.1-SNAPSHOT</version>
9         <relativePath>../..</relativePath>
10     </parent>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15         <tag>HEAD</tag>
16     </scm>
17
18     <artifactId>clustered-datastore-implementation</artifactId>
19     <version>0.4.1-SNAPSHOT</version>
20     <packaging>bundle</packaging>
21
22     <build>
23         <plugins>
24             <plugin>
25                 <groupId>org.apache.felix</groupId>
26                 <artifactId>maven-bundle-plugin</artifactId>
27                 <extensions>true</extensions>
28                 <configuration>
29                     <instructions>
30                     </instructions>
31                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
32                 </configuration>
33             </plugin>
34             <plugin>
35                 <groupId>org.opendaylight.yangtools</groupId>
36                 <artifactId>yang-maven-plugin</artifactId>
37                 <executions>
38                     <execution>
39                         <goals>
40                             <goal>generate-sources</goal>
41                         </goals>
42                         <configuration>
43                             <codeGenerators>
44                                 <generator>
45                                     <codeGeneratorClass>
46                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
47                                     </codeGeneratorClass>
48                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
49                                     <additionalConfiguration>
50                                         <namespaceToPackage1>
51                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
52                                         </namespaceToPackage1>
53                                     </additionalConfiguration>
54                                 </generator>
55                                 <generator>
56                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
57                                     <outputBaseDir>target/site/models</outputBaseDir>
58                                 </generator>
59                             </codeGenerators>
60                             <inspectDependencies>true</inspectDependencies>
61                         </configuration>
62                     </execution>
63                 </executions>
64                 <dependencies>
65                     <dependency>
66                         <groupId>org.opendaylight.controller</groupId>
67                         <artifactId>yang-jmx-generator-plugin</artifactId>
68                         <version>0.2.3-SNAPSHOT</version>
69                     </dependency>
70                     <dependency>
71                         <groupId>org.opendaylight.yangtools</groupId>
72                         <artifactId>maven-sal-api-gen-plugin</artifactId>
73                         <version>${yangtools.version}</version>
74                         <type>jar</type>
75                     </dependency>
76                 </dependencies>
77             </plugin>
78         </plugins>
79     </build>
80     <dependencies>
81
82         <dependency>
83             <groupId>com.google.guava</groupId>
84             <artifactId>guava</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>sal-core-api</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.controller</groupId>
92             <artifactId>sal-common-util</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.controller</groupId>
96             <artifactId>config-api</artifactId>
97         </dependency>
98
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>sal</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>clustering.services</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>junit</groupId>
109             <artifactId>junit</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.mockito</groupId>
114             <artifactId>mockito-all</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.yangtools</groupId>
119             <artifactId>yang-binding</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.yangtools</groupId>
123             <artifactId>yang-data-api</artifactId>
124         </dependency>
125
126     </dependencies>
127 </project>