blob: 40fa0a2ecff4d988c80b88de0a131c738a47d511 [file] [log] [blame]
Thomas Vachuska1e60f972015-10-19 09:55:52 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
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 Milkey54a78512017-02-13 11:13:52 -080024 <version>1.10.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>
67 <version>0.14.0</version>
68 <scope>test</scope>
69 </dependency>
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070070
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-cli</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76
77 <dependency>
78 <groupId>org.apache.karaf.shell</groupId>
79 <artifactId>org.apache.karaf.shell.console</artifactId>
80 </dependency>
81
Thomas Vachuska1e60f972015-10-19 09:55:52 -070082 </dependencies>
andreaeb70a942015-10-16 21:34:46 -070083
84 <build>
85 <plugins>
86 <!--plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-shade-plugin</artifactId>
89 <version>2.3</version>
90 <configuration>
91 <filters>
92 <filter>
93 <artifact>ch.ethz.ganymed:ganymed-ssh2</artifact>
94 <includes>
95 <include>ch/ethz/ssh2/**</include>
96 </includes>
97 </filter>
98 <filter>
99 <artifact>org.jdom:jdom2</artifact>
100 <includes>
101 <include>org/jdom2/**</include>
102 </includes>
103 </filter>
104 </filters>
105 </configuration>
106 <executions>
107 <execution>
108 <phase>package</phase>
109 <goals>
110 <goal>shade</goal>
111 </goals>
112 </execution>
113 </executions>
114 </plugin-->
115 <plugin>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>maven-bundle-plugin</artifactId>
118 <configuration>
119 <instructions>
120 <Private-Package>ch.ethz.ssh2.*</Private-Package>
121 <Embed-Dependecy>ganymed-ssh2</Embed-Dependecy>
122 </instructions>
123 </configuration>
124 </plugin>
Andrea Campanella0ea82252015-12-04 11:22:36 -0800125 <plugin>
126 <groupId>org.apache.felix</groupId>
127 <artifactId>maven-scr-plugin</artifactId>
128 </plugin>
andreaeb70a942015-10-16 21:34:46 -0700129 </plugins>
130 </build>
Thomas Vachuska1e60f972015-10-19 09:55:52 -0700131</project>