1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
4 Copyright (c) 2020 PANTHEON.tech, s.r.o. and others. All rights reserved.
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
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>
14 <groupId>org.opendaylight.odlparent</groupId>
15 <artifactId>odlparent</artifactId>
16 <version>12.0.2</version>
20 <groupId>org.opendaylight.controller</groupId>
21 <artifactId>repackaged-akka-jar</artifactId>
22 <packaging>jar</packaging>
23 <version>7.0.4-SNAPSHOT</version>
24 <name>${project.artifactId}</name>
27 <!-- We do not want to leak this artifact -->
28 <maven.deploy.skip>true</maven.deploy.skip>
32 <!-- Note: when bumping versions, make sure to update configurations in src/main/resources -->
34 <groupId>com.typesafe.akka</groupId>
35 <artifactId>akka-actor_2.13</artifactId>
36 <version>2.6.20</version>
39 <groupId>com.typesafe.akka</groupId>
40 <artifactId>akka-actor-typed_2.13</artifactId>
41 <version>2.6.20</version>
44 <groupId>com.typesafe.akka</groupId>
45 <artifactId>akka-cluster_2.13</artifactId>
46 <version>2.6.20</version>
49 <groupId>com.typesafe.akka</groupId>
50 <artifactId>akka-cluster-typed_2.13</artifactId>
51 <version>2.6.20</version>
54 <groupId>com.typesafe.akka</groupId>
55 <artifactId>akka-osgi_2.13</artifactId>
56 <version>2.6.20</version>
59 <groupId>com.typesafe.akka</groupId>
60 <artifactId>akka-persistence_2.13</artifactId>
61 <version>2.6.20</version>
64 <groupId>com.typesafe.akka</groupId>
65 <artifactId>akka-protobuf_2.13</artifactId>
66 <version>2.6.20</version>
69 <groupId>com.typesafe.akka</groupId>
70 <artifactId>akka-remote_2.13</artifactId>
71 <version>2.6.20</version>
74 <groupId>com.typesafe.akka</groupId>
75 <artifactId>akka-slf4j_2.13</artifactId>
76 <version>2.6.20</version>
79 <groupId>com.typesafe.akka</groupId>
80 <artifactId>akka-stream_2.13</artifactId>
81 <version>2.6.20</version>
88 <artifactId>maven-dependency-plugin</artifactId>
91 <id>unpack-license</id>
93 <!-- Akka is Apache-2.0 licensed -->
100 <artifactId>maven-shade-plugin</artifactId>
103 <phase>package</phase>
108 <createDependencyReducedPom>false</createDependencyReducedPom>
109 <shadeSourcesContent>true</shadeSourcesContent>
110 <createSourcesJar>true</createSourcesJar>
111 <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
114 <include>com.typesafe.akka</include>
119 <artifact>com.typesafe.akka:*</artifact>
121 <exclude>META-INF/MANIFEST.MF</exclude>
122 <exclude>reference.conf</exclude>