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