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>7.0.6</version>
20 <groupId>org.opendaylight.netconf</groupId>
21 <artifactId>shaded-sshd-jar</artifactId>
22 <packaging>jar</packaging>
23 <version>1.10.0-SNAPSHOT</version>
24 <name>${project.artifactId}</name>
27 <!-- We do not want to leak this artifact -->
28 <maven.deploy.skip>true</maven.deploy.skip>
33 <groupId>org.apache.sshd</groupId>
34 <artifactId>sshd-osgi</artifactId>
35 <version>2.5.1</version>
38 <groupId>org.apache.sshd</groupId>
39 <artifactId>sshd-netty</artifactId>
40 <version>2.5.1</version>
43 <groupId>net.i2p.crypto</groupId>
44 <artifactId>eddsa</artifactId>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-shade-plugin</artifactId>
55 <phase>package</phase>
60 <createDependencyReducedPom>false</createDependencyReducedPom>
61 <shadeSourcesContent>true</shadeSourcesContent>
62 <createSourcesJar>true</createSourcesJar>
63 <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
66 <include>org.apache.sshd</include>
67 <include>net.i2p.crypto</include>
72 <artifact>*</artifact>
74 <exclude>META-INF/MANIFEST.MF</exclude>
75 <exclude>META-INF/services/**</exclude>
79 <artifact>org.apache.sshd:sshd-netty</artifact>
81 <exclude>META-INF/DEPENDENCIES</exclude>
82 <exclude>META-INF/LICENSE</exclude>
83 <exclude>META-INF/NOTICE</exclude>
84 <exclude>META-INF/services/**</exclude>
90 <pattern>org.apache.sshd</pattern>
91 <shadedPattern>org.opendaylight.netconf.shaded.sshd</shadedPattern>
94 <pattern>net.i2p.crypto.eddsa</pattern>
95 <shadedPattern>org.opendaylight.netconf.shaded.eddsa</shadedPattern>