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