blob: c4f214b05f05799002e77df998c08223f979a97d [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
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080031 <description>ONOS NETCONF plugin controller</description>
32
Thomas Vachuska1e60f972015-10-19 09:55:52 -070033 <dependencies>
34 <dependency>
35 <groupId>org.osgi</groupId>
36 <artifactId>org.osgi.compendium</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onos-netconf-api</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43 <dependency>
andreaeb70a942015-10-16 21:34:46 -070044 <groupId>ch.ethz.ganymed</groupId>
45 <artifactId>ganymed-ssh2</artifactId>
46 <version>262</version>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070047 </dependency>
48 </dependencies>
andreaeb70a942015-10-16 21:34:46 -070049
50 <build>
51 <plugins>
52 <!--plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-shade-plugin</artifactId>
55 <version>2.3</version>
56 <configuration>
57 <filters>
58 <filter>
59 <artifact>ch.ethz.ganymed:ganymed-ssh2</artifact>
60 <includes>
61 <include>ch/ethz/ssh2/**</include>
62 </includes>
63 </filter>
64 <filter>
65 <artifact>org.jdom:jdom2</artifact>
66 <includes>
67 <include>org/jdom2/**</include>
68 </includes>
69 </filter>
70 </filters>
71 </configuration>
72 <executions>
73 <execution>
74 <phase>package</phase>
75 <goals>
76 <goal>shade</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin-->
81 <plugin>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>maven-bundle-plugin</artifactId>
84 <configuration>
85 <instructions>
86 <Private-Package>ch.ethz.ssh2.*</Private-Package>
87 <Embed-Dependecy>ganymed-ssh2</Embed-Dependecy>
88 </instructions>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070093</project>