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