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.controller</groupId>
15 <artifactId>bundle-parent</artifactId>
16 <version>9.0.0-SNAPSHOT</version>
17 <relativePath>../../bundle-parent</relativePath>
20 <artifactId>repackaged-akka</artifactId>
21 <packaging>bundle</packaging>
22 <name>${project.artifactId}</name>
25 <!-- We are just juggling classes here -->
26 <odlparent.modernizer.skip>true</odlparent.modernizer.skip>
27 <odlparent.spotbugs.skip>true</odlparent.spotbugs.skip>
29 <!-- We do not want to generate javadoc -->
30 <maven.javadoc.skip>true</maven.javadoc.skip>
35 <groupId>org.opendaylight.controller</groupId>
36 <artifactId>repackaged-akka-jar</artifactId>
37 <version>${project.version}</version>
38 <scope>provided</scope>
42 <groupId>com.typesafe</groupId>
43 <artifactId>config</artifactId>
46 <groupId>com.typesafe</groupId>
47 <artifactId>ssl-config-core_2.13</artifactId>
50 <groupId>io.aeron</groupId>
51 <artifactId>aeron-client</artifactId>
54 <groupId>io.aeron</groupId>
55 <artifactId>aeron-driver</artifactId>
58 <groupId>io.netty</groupId>
59 <artifactId>netty</artifactId>
60 <version>3.10.6.Final</version>
63 <groupId>org.agrona</groupId>
64 <artifactId>agrona</artifactId>
67 <groupId>org.reactivestreams</groupId>
68 <artifactId>reactive-streams</artifactId>
71 <groupId>org.lmdbjava</groupId>
72 <artifactId>lmdbjava</artifactId>
73 <version>0.7.0</version>
76 <groupId>com.github.jnr</groupId>
77 <artifactId>jffi</artifactId>
80 <groupId>com.github.jnr</groupId>
81 <artifactId>jnr-ffi</artifactId>
84 <groupId>com.github.jnr</groupId>
85 <artifactId>jnr-constants</artifactId>
90 <groupId>org.scala-lang</groupId>
91 <artifactId>scala-library</artifactId>
94 <groupId>org.scala-lang</groupId>
95 <artifactId>scala-reflect</artifactId>
98 <groupId>org.scala-lang.modules</groupId>
99 <artifactId>scala-java8-compat_2.13</artifactId>
102 <groupId>org.scala-lang.modules</groupId>
103 <artifactId>scala-parser-combinators_2.13</artifactId>
110 <artifactId>maven-dependency-plugin</artifactId>
113 <id>unpack-license</id>
115 <!-- Akka is Apache-2.0 licensed -->
121 <phase>compile</phase>
128 <groupId>org.opendaylight.controller</groupId>
129 <artifactId>repackaged-akka-jar</artifactId>
130 <version>${project.version}</version>
133 <groupId>com.hierynomus</groupId>
134 <artifactId>asn-one</artifactId>
135 <version>0.4.0</version>
138 <overWriteReleases>false</overWriteReleases>
139 <overWriteSnapshots>true</overWriteSnapshots>
140 <outputDirectory>${project.build.directory}/classes</outputDirectory>
144 <id>unpack-sources</id>
145 <phase>prepare-package</phase>
147 <goal>unpack-dependencies</goal>
150 <classifier>sources</classifier>
151 <includeArtifactIds>repackaged-akka-jar</includeArtifactIds>
152 <outputDirectory>${project.build.directory}/shaded-sources</outputDirectory>
158 <artifactId>maven-antrun-plugin</artifactId>
161 <id>move-resources</id>
162 <phase>prepare-package</phase>
168 <move todir="${project.build.directory}/resources">
169 <fileset dir="${project.build.directory}/classes">
170 <include name="*.conf"/>
179 <groupId>org.codehaus.mojo</groupId>
180 <artifactId>build-helper-maven-plugin</artifactId>
183 <id>shaded-sources</id>
184 <phase>prepare-package</phase>
186 <goal>add-source</goal>
189 <sources>${project.build.directory}/shaded-sources</sources>
193 <id>shaded-resources</id>
194 <phase>prepare-package</phase>
196 <goal>add-resource</goal>
201 <directory>${project.build.directory}/resources</directory>
209 <groupId>org.apache.felix</groupId>
210 <artifactId>maven-bundle-plugin</artifactId>
211 <extensions>true</extensions>
214 <Automatic-Module-Name>org.opendaylight.controller.repackaged.akka</Automatic-Module-Name>
217 com.typesafe.sslconfig.akka.*,
221 sun.misc;resolution:=optional,
222 sun.reflect;resolution:=optional,
223 org.fusesource.leveldbjni;resolution:=optional,
224 org.iq80.leveldb;resolution:=optional,
225 org.iq80.leveldb.impl;resolution:=optional,