Use URLEncoder.encode(String, Charset)
[controller.git] / opendaylight / md-sal / sal-akka-segmented-journal / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright (c) 2019 Pantheon Technologies, s.r.o. and others.  All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.controller</groupId>
14         <artifactId>mdsal-parent</artifactId>
15         <version>4.0.4-SNAPSHOT</version>
16         <relativePath>../parent</relativePath>
17     </parent>
18
19     <artifactId>sal-akka-segmented-journal</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <!-- Akka -->
24         <dependency>
25             <groupId>org.opendaylight.controller</groupId>
26             <artifactId>repackaged-akka</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>com.typesafe.akka</groupId>
30             <artifactId>akka-testkit_2.13</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>com.typesafe.akka</groupId>
34             <artifactId>akka-persistence-tck_2.13</artifactId>
35         </dependency>
36
37         <!-- Codahale -->
38         <dependency>
39             <groupId>io.dropwizard.metrics</groupId>
40             <artifactId>metrics-core</artifactId>
41         </dependency>
42
43         <!-- Scala -->
44         <dependency>
45             <groupId>org.scala-lang</groupId>
46             <artifactId>scala-library</artifactId>
47         </dependency>
48
49         <!-- Clustering commons for metrics -->
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>sal-clustering-commons</artifactId>
53         </dependency>
54
55         <!-- Atomix -->
56         <dependency>
57             <groupId>io.atomix</groupId>
58             <artifactId>atomix-storage</artifactId>
59             <version>3.1.5</version>
60             <scope>provided</scope>
61         </dependency>
62         <dependency>
63             <groupId>io.atomix</groupId>
64             <artifactId>atomix-utils</artifactId>
65             <version>3.1.5</version>
66             <scope>provided</scope>
67         </dependency>
68         <dependency>
69             <groupId>com.esotericsoftware</groupId>
70             <artifactId>kryo</artifactId>
71             <version>4.0.2</version>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
75             <groupId>com.esotericsoftware</groupId>
76             <artifactId>minlog</artifactId>
77             <version>1.3.1</version>
78             <scope>provided</scope>
79         </dependency>
80         <dependency>
81             <groupId>com.esotericsoftware</groupId>
82             <artifactId>reflectasm</artifactId>
83             <version>1.11.8</version>
84             <scope>provided</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.ow2.asm</groupId>
88             <artifactId>asm</artifactId>
89             <version>5.2</version>
90             <scope>provided</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.objenesis</groupId>
94             <artifactId>objenesis</artifactId>
95             <version>2.6</version>
96             <scope>provided</scope>
97         </dependency>
98
99         <dependency>
100             <groupId>commons-io</groupId>
101             <artifactId>commons-io</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.scalatestplus</groupId>
106             <artifactId>junit-4-13_2.13</artifactId>
107             <scope>test</scope>
108         </dependency>
109     </dependencies>
110
111     <build>
112         <plugins>
113             <plugin>
114                 <groupId>org.apache.felix</groupId>
115                 <artifactId>maven-bundle-plugin</artifactId>
116                 <extensions>true</extensions>
117                 <configuration>
118                     <instructions>
119                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
120                         <Import-Package>
121                             !COM.newmonics.*,
122                             !android.os,
123                             *
124                         </Import-Package>
125                         <Embed-Dependency>
126                             <!-- atomix.io is using an older Guava, and Kryo is using ancient objenesis,
127                                  so let's embed it to prevent duplicates -->
128                             *;inline=true;groupId=io.atomix,
129                             *;inline=true;groupId=com.esotericsoftware,
130                             *;inline=true;groupId=org.objenesis,
131                             *;inline=true;groupId=org.ow2.asm,
132                         </Embed-Dependency>
133                     </instructions>
134                 </configuration>
135             </plugin>
136         </plugins>
137     </build>
138
139     <scm>
140         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
141         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
142         <tag>HEAD</tag>
143         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
144     </scm>
145 </project>