blob: 946460be714e9a8325f8ede7675068d39d2f61c4 [file] [log] [blame]
Thomas Vachuska1e60f972015-10-19 09:55:52 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
Thomas Vachuska1e60f972015-10-19 09:55:52 -07004 ~
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>
Ray Milkey64677e92017-08-01 10:48:08 -070024 <version>1.11.0-SNAPSHOT</version>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070025 </parent>
26
27 <artifactId>onos-netconf-ctl</artifactId>
28 <packaging>bundle</packaging>
29
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080030 <description>ONOS NETCONF plugin controller</description>
31
Thomas Vachuska1e60f972015-10-19 09:55:52 -070032 <dependencies>
33 <dependency>
34 <groupId>org.osgi</groupId>
35 <artifactId>org.osgi.compendium</artifactId>
36 </dependency>
37 <dependency>
Yuta HIGUCHIe3ae8212017-04-20 10:18:41 -070038 <groupId>org.osgi</groupId>
39 <artifactId>org.osgi.core</artifactId>
40 <scope>test</scope>
41 </dependency>
42 <dependency>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070043 <groupId>org.onosproject</groupId>
44 <artifactId>onos-netconf-api</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47 <dependency>
andreaeb70a942015-10-16 21:34:46 -070048 <groupId>ch.ethz.ganymed</groupId>
49 <artifactId>ganymed-ssh2</artifactId>
50 <version>262</version>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070051 </dependency>
Andreas Papazois4752cfa2016-04-25 14:52:12 +030052 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-api</artifactId>
55 <classifier>tests</classifier>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onlab-osgi</artifactId>
Andreas Papazois4752cfa2016-04-25 14:52:12 +030061 <classifier>tests</classifier>
62 <scope>test</scope>
63 </dependency>
Sean Condond2c8d472017-02-17 17:09:39 +000064 <dependency>
65 <groupId>org.apache.sshd</groupId>
66 <artifactId>sshd-core</artifactId>
Andrea Campanella7bbe7b12017-05-03 16:03:38 -070067 <version>1.4.0</version>
Sean Condond2c8d472017-02-17 17:09:39 +000068 </dependency>
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070069
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-cli</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75
76 <dependency>
77 <groupId>org.apache.karaf.shell</groupId>
78 <artifactId>org.apache.karaf.shell.console</artifactId>
79 </dependency>
80
Thomas Vachuska1e60f972015-10-19 09:55:52 -070081 </dependencies>
andreaeb70a942015-10-16 21:34:46 -070082
83 <build>
84 <plugins>
85 <!--plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-shade-plugin</artifactId>
88 <version>2.3</version>
89 <configuration>
90 <filters>
91 <filter>
92 <artifact>ch.ethz.ganymed:ganymed-ssh2</artifact>
93 <includes>
94 <include>ch/ethz/ssh2/**</include>
95 </includes>
96 </filter>
97 <filter>
98 <artifact>org.jdom:jdom2</artifact>
99 <includes>
100 <include>org/jdom2/**</include>
101 </includes>
102 </filter>
103 </filters>
104 </configuration>
105 <executions>
106 <execution>
107 <phase>package</phase>
108 <goals>
109 <goal>shade</goal>
110 </goals>
111 </execution>
112 </executions>
113 </plugin-->
114 <plugin>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>maven-bundle-plugin</artifactId>
117 <configuration>
118 <instructions>
119 <Private-Package>ch.ethz.ssh2.*</Private-Package>
120 <Embed-Dependecy>ganymed-ssh2</Embed-Dependecy>
121 </instructions>
122 </configuration>
123 </plugin>
Andrea Campanella0ea82252015-12-04 11:22:36 -0800124 <plugin>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>maven-scr-plugin</artifactId>
127 </plugin>
andreaeb70a942015-10-16 21:34:46 -0700128 </plugins>
129 </build>
Thomas Vachuska1e60f972015-10-19 09:55:52 -0700130</project>