Bump version to 2.0.1-SNAPSHOT
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / 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>mdsal-parent</artifactId>
7         <version>2.0.1-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>sal-remoterpc-connector</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>com.typesafe.akka</groupId>
17             <artifactId>akka-actor_2.13</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>com.typesafe.akka</groupId>
21             <artifactId>akka-cluster_2.13</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>com.typesafe.akka</groupId>
25             <artifactId>akka-remote_2.13</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>com.typesafe.akka</groupId>
29             <artifactId>akka-testkit_2.13</artifactId>
30             <scope>test</scope>
31         </dependency>
32         <dependency>
33             <groupId>com.typesafe.akka</groupId>
34             <artifactId>akka-osgi_2.13</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>com.typesafe.akka</groupId>
38             <artifactId>akka-slf4j_2.13</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.typesafe.akka</groupId>
42             <artifactId>akka-persistence_2.13</artifactId>
43         </dependency>
44         <!-- SAL Dependencies -->
45         <dependency>
46             <groupId>org.opendaylight.controller</groupId>
47             <artifactId>sal-common-util</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51            <artifactId>mdsal-dom-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55            <artifactId>mdsal-dom-spi</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-clustering-commons</artifactId>
60         </dependency>
61         <!-- Yang tools-->
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>yang-data-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-model-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.yangtools</groupId>
72             <artifactId>yang-data-impl</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools</groupId>
76             <artifactId>yang-common</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.osgi</groupId>
80             <artifactId>org.osgi.core</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.slf4j</groupId>
84             <artifactId>slf4j-api</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.scala-lang</groupId>
88             <artifactId>scala-library</artifactId>
89         </dependency>
90         <!-- Test Dependencies -->
91         <dependency>
92             <groupId>org.slf4j</groupId>
93             <artifactId>slf4j-simple</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>com.google.collections</groupId>
98             <artifactId>google-collections</artifactId>
99             <version>1.0</version>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.yangtools</groupId>
104             <artifactId>yang-test-util</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.controller</groupId>
108             <artifactId>sal-akka-raft</artifactId>
109             <type>test-jar</type>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>commons-lang</groupId>
114             <artifactId>commons-lang</artifactId>
115             <scope>test</scope>
116         </dependency>
117     </dependencies>
118
119     <build>
120         <plugins>
121             <plugin>
122                 <groupId>org.apache.felix</groupId>
123                 <artifactId>maven-bundle-plugin</artifactId>
124                 <extensions>true</extensions>
125                 <configuration>
126                     <instructions>
127                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
128                         <Export-package/>
129                         <Import-Package>
130                             org.opendaylight.controller.cluster;
131                             *
132                         </Import-Package>
133                     </instructions>
134                 </configuration>
135             </plugin>
136         </plugins>
137     </build>
138
139     <scm>
140         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
141         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
142         <tag>HEAD</tag>
143         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
144     </scm>
145
146 </project>