Fix NPE in YangTextSchemaSourceSerializationProxy#getRepresentation
[controller.git] / opendaylight / md-sal / sal-akka-raft-example / 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.5.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-akka-raft-example</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>org.opendaylight.controller</groupId>
15       <artifactId>sal-akka-raft</artifactId>
16     </dependency>
17
18     <dependency>
19       <groupId>org.slf4j</groupId>
20       <artifactId>slf4j-simple</artifactId>
21     </dependency>
22
23     <dependency>
24       <groupId>com.google.guava</groupId>
25       <artifactId>guava</artifactId>
26     </dependency>
27   </dependencies>
28
29   <build>
30     <plugins>
31       <plugin>
32         <groupId>org.apache.felix</groupId>
33         <artifactId>maven-bundle-plugin</artifactId>
34         <extensions>true</extensions>
35         <configuration>
36           <instructions>
37             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
38             <Export-package>org.opendaylight.controller.cluster.example</Export-package>
39             <Import-Package>*</Import-Package>
40             <DynamicImport-Package>*</DynamicImport-Package>
41           </instructions>
42         </configuration>
43       </plugin>
44     </plugins>
45   </build>
46   <scm>
47     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
48     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
49     <tag>HEAD</tag>
50     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
51   </scm>
52 </project>