Bump versions to 4.0.0-SNAPSHOT
[controller.git] / akka / repackaged-akka-jar / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2020 PANTHEON.tech, 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
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>odlparent</artifactId>
16         <version>8.1.1</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.controller</groupId>
21     <artifactId>repackaged-akka-jar</artifactId>
22     <packaging>jar</packaging>
23     <version>4.0.0-SNAPSHOT</version>
24     <name>${project.artifactId}</name>
25
26     <properties>
27         <!-- We do not want to leak this artifact -->
28         <maven.deploy.skip>true</maven.deploy.skip>
29     </properties>
30
31     <dependencies>
32         <!-- Note: when bumping versions, make sure to update configurations in src/main/resources -->
33         <dependency>
34             <groupId>com.typesafe.akka</groupId>
35             <artifactId>akka-actor_2.13</artifactId>
36             <version>2.6.12</version>
37         </dependency>
38         <dependency>
39             <groupId>com.typesafe.akka</groupId>
40             <artifactId>akka-cluster_2.13</artifactId>
41             <version>2.6.12</version>
42         </dependency>
43         <dependency>
44             <groupId>com.typesafe.akka</groupId>
45             <artifactId>akka-osgi_2.13</artifactId>
46             <version>2.6.12</version>
47         </dependency>
48         <dependency>
49             <groupId>com.typesafe.akka</groupId>
50             <artifactId>akka-persistence_2.13</artifactId>
51             <version>2.6.12</version>
52         </dependency>
53         <dependency>
54             <groupId>com.typesafe.akka</groupId>
55             <artifactId>akka-protobuf_2.13</artifactId>
56             <version>2.6.12</version>
57         </dependency>
58         <dependency>
59             <groupId>com.typesafe.akka</groupId>
60             <artifactId>akka-remote_2.13</artifactId>
61             <version>2.6.12</version>
62         </dependency>
63         <dependency>
64             <groupId>com.typesafe.akka</groupId>
65             <artifactId>akka-slf4j_2.13</artifactId>
66             <version>2.6.12</version>
67         </dependency>
68         <dependency>
69             <groupId>com.typesafe.akka</groupId>
70             <artifactId>akka-stream_2.13</artifactId>
71             <version>2.6.12</version>
72         </dependency>
73     </dependencies>
74
75     <build>
76         <plugins>
77             <plugin>
78                 <artifactId>maven-dependency-plugin</artifactId>
79                 <executions>
80                     <execution>
81                         <id>unpack-license</id>
82                         <configuration>
83                             <!-- Akka is Apache-2.0 licensed -->
84                             <skip>true</skip>
85                         </configuration>
86                     </execution>
87                 </executions>
88             </plugin>
89             <plugin>
90                 <artifactId>maven-shade-plugin</artifactId>
91                 <executions>
92                     <execution>
93                         <phase>package</phase>
94                         <goals>
95                             <goal>shade</goal>
96                         </goals>
97                         <configuration>
98                             <createDependencyReducedPom>false</createDependencyReducedPom>
99                             <shadeSourcesContent>true</shadeSourcesContent>
100                             <createSourcesJar>true</createSourcesJar>
101                             <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
102                             <artifactSet>
103                                 <includes>
104                                     <include>com.typesafe.akka</include>
105                                 </includes>
106                             </artifactSet>
107                             <filters>
108                                 <filter>
109                                     <artifact>com.typesafe.akka:*</artifact>
110                                     <excludes>
111                                         <exclude>META-INF/MANIFEST.MF</exclude>
112                                         <exclude>reference.conf</exclude>
113                                     </excludes>
114                                 </filter>
115                             </filters>
116                         </configuration>
117                     </execution>
118                 </executions>
119             </plugin>
120         </plugins>
121     </build>
122 </project>