Bump versions to 5.0.0-SNAPSHOT
[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>5.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>org.opendaylight.controller</groupId>
17       <artifactId>sal-akka-raft</artifactId>
18     </dependency>
19
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>sal-distributed-datastore</artifactId>
23     </dependency>
24
25     <!-- Test Dependencies -->
26     <dependency>
27       <groupId>com.typesafe.akka</groupId>
28       <artifactId>akka-testkit_2.13</artifactId>
29     </dependency>
30
31     <dependency>
32       <groupId>org.slf4j</groupId>
33       <artifactId>slf4j-simple</artifactId>
34       <scope>test</scope>
35     </dependency>
36
37     <dependency>
38       <groupId>args4j</groupId>
39       <artifactId>args4j</artifactId>
40       <version>2.0.29</version>
41     </dependency>
42
43   </dependencies>
44
45   <build>
46     <plugins>
47
48       <plugin>
49         <groupId>org.apache.felix</groupId>
50         <artifactId>maven-bundle-plugin</artifactId>
51         <extensions>true</extensions>
52         <configuration>
53           <instructions>
54             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
55           </instructions>
56         </configuration>
57       </plugin>
58
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-shade-plugin</artifactId>
62         <executions>
63           <execution>
64             <phase>package</phase>
65             <goals>
66               <goal>shade</goal>
67             </goals>
68             <configuration>
69               <shadedArtifactAttached>true</shadedArtifactAttached>
70               <shadedClassifierName>allinone</shadedClassifierName>
71               <artifactSet>
72                 <includes>
73                   <include>*:*</include>
74                 </includes>
75               </artifactSet>
76               <transformers>
77                 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
78                   <resource>reference.conf</resource>
79                 </transformer>
80                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
81                   <manifestEntries>
82                     <Main-Class>org.opendaylight.controller.dummy.datastore.Main</Main-Class>
83                   </manifestEntries>
84                 </transformer>
85               </transformers>
86             </configuration>
87           </execution>
88         </executions>
89       </plugin>
90     </plugins>
91   </build>
92
93   <scm>
94     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
95     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
96     <tag>HEAD</tag>
97     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
98   </scm>
99
100 </project>