blob: 90c77a87ed7aa848a409b0335973cd44bd9fec9a [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>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070070 </dependencies>
andreaeb70a942015-10-16 21:34:46 -070071
72 <build>
73 <plugins>
74 <!--plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-shade-plugin</artifactId>
77 <version>2.3</version>
78 <configuration>
79 <filters>
80 <filter>
81 <artifact>ch.ethz.ganymed:ganymed-ssh2</artifact>
82 <includes>
83 <include>ch/ethz/ssh2/**</include>
84 </includes>
85 </filter>
86 <filter>
87 <artifact>org.jdom:jdom2</artifact>
88 <includes>
89 <include>org/jdom2/**</include>
90 </includes>
91 </filter>
92 </filters>
93 </configuration>
94 <executions>
95 <execution>
96 <phase>package</phase>
97 <goals>
98 <goal>shade</goal>
99 </goals>
100 </execution>
101 </executions>
102 </plugin-->
103 <plugin>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>maven-bundle-plugin</artifactId>
106 <configuration>
107 <instructions>
108 <Private-Package>ch.ethz.ssh2.*</Private-Package>
109 <Embed-Dependecy>ganymed-ssh2</Embed-Dependecy>
110 </instructions>
111 </configuration>
112 </plugin>
Andrea Campanella0ea82252015-12-04 11:22:36 -0800113 <plugin>
114 <groupId>org.apache.felix</groupId>
115 <artifactId>maven-scr-plugin</artifactId>
116 </plugin>
andreaeb70a942015-10-16 21:34:46 -0700117 </plugins>
118 </build>
Thomas Vachuska1e60f972015-10-19 09:55:52 -0700119</project>