blob: e022acbae472f377a90ad345b518fef41e7ee089 [file] [log] [blame]
Thomas Vachuska1e60f972015-10-19 09:55:52 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-netconf</artifactId>
24 <version>1.4.0-SNAPSHOT</version>
25 <relativePath>../pom.xml</relativePath>
26 </parent>
27
28 <artifactId>onos-netconf-ctl</artifactId>
29 <packaging>bundle</packaging>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.osgi</groupId>
34 <artifactId>org.osgi.compendium</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.onosproject</groupId>
38 <artifactId>onos-netconf-api</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
andreaeb70a942015-10-16 21:34:46 -070042 <groupId>ch.ethz.ganymed</groupId>
43 <artifactId>ganymed-ssh2</artifactId>
44 <version>262</version>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070045 </dependency>
46 </dependencies>
andreaeb70a942015-10-16 21:34:46 -070047
48 <build>
49 <plugins>
50 <!--plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-shade-plugin</artifactId>
53 <version>2.3</version>
54 <configuration>
55 <filters>
56 <filter>
57 <artifact>ch.ethz.ganymed:ganymed-ssh2</artifact>
58 <includes>
59 <include>ch/ethz/ssh2/**</include>
60 </includes>
61 </filter>
62 <filter>
63 <artifact>org.jdom:jdom2</artifact>
64 <includes>
65 <include>org/jdom2/**</include>
66 </includes>
67 </filter>
68 </filters>
69 </configuration>
70 <executions>
71 <execution>
72 <phase>package</phase>
73 <goals>
74 <goal>shade</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin-->
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-bundle-plugin</artifactId>
82 <configuration>
83 <instructions>
84 <Private-Package>ch.ethz.ssh2.*</Private-Package>
85 <Embed-Dependecy>ganymed-ssh2</Embed-Dependecy>
86 </instructions>
87 </configuration>
88 </plugin>
89 </plugins>
90 </build>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070091</project>