Cleanup versions across modules
[controller.git] / opendaylight / md-sal / sal-dummy-distributed-datastore / 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.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-dummy-distributed-datastore</artifactId>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>com.typesafe.akka</groupId>
18       <artifactId>akka-actor_2.13</artifactId>
19     </dependency>
20
21     <dependency>
22       <groupId>com.typesafe.akka</groupId>
23       <artifactId>akka-cluster_2.13</artifactId>
24     </dependency>
25
26     <dependency>
27       <groupId>com.typesafe.akka</groupId>
28       <artifactId>akka-persistence_2.13</artifactId>
29     </dependency>
30
31     <dependency>
32       <groupId>com.typesafe.akka</groupId>
33       <artifactId>akka-remote_2.13</artifactId>
34     </dependency>
35
36     <dependency>
37       <groupId>com.typesafe.akka</groupId>
38       <artifactId>akka-testkit_2.13</artifactId>
39       <scope>test</scope>
40     </dependency>
41
42     <dependency>
43       <groupId>com.typesafe.akka</groupId>
44       <artifactId>akka-slf4j_2.13</artifactId>
45     </dependency>
46
47     <dependency>
48       <groupId>com.typesafe.akka</groupId>
49       <artifactId>akka-osgi_2.13</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal-clustering-commons</artifactId>
55     </dependency>
56
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>sal-akka-raft</artifactId>
60     </dependency>
61
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-distributed-datastore</artifactId>
65     </dependency>
66
67     <!-- Test Dependencies -->
68     <dependency>
69       <groupId>org.mockito</groupId>
70       <artifactId>mockito-core</artifactId>
71       <scope>test</scope>
72     </dependency>
73
74     <dependency>
75       <groupId>org.slf4j</groupId>
76       <artifactId>slf4j-simple</artifactId>
77       <scope>test</scope>
78     </dependency>
79
80     <dependency>
81       <groupId>args4j</groupId>
82       <artifactId>args4j</artifactId>
83       <version>2.0.29</version>
84     </dependency>
85
86   </dependencies>
87
88   <build>
89     <plugins>
90
91       <plugin>
92         <groupId>org.apache.felix</groupId>
93         <artifactId>maven-bundle-plugin</artifactId>
94         <extensions>true</extensions>
95         <configuration>
96           <instructions>
97             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
98           </instructions>
99         </configuration>
100       </plugin>
101
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-shade-plugin</artifactId>
105         <executions>
106           <execution>
107             <phase>package</phase>
108             <goals>
109               <goal>shade</goal>
110             </goals>
111             <configuration>
112               <shadedArtifactAttached>true</shadedArtifactAttached>
113               <shadedClassifierName>allinone</shadedClassifierName>
114               <artifactSet>
115                 <includes>
116                   <include>*:*</include>
117                 </includes>
118               </artifactSet>
119               <transformers>
120                 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
121                   <resource>reference.conf</resource>
122                 </transformer>
123                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
124                   <manifestEntries>
125                     <Main-Class>org.opendaylight.controller.dummy.datastore.Main</Main-Class>
126                   </manifestEntries>
127                 </transformer>
128               </transformers>
129             </configuration>
130           </execution>
131         </executions>
132       </plugin>
133     </plugins>
134   </build>
135
136   <scm>
137     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
138     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
139     <tag>HEAD</tag>
140     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
141   </scm>
142
143 </project>