blob: 8773f700a3273331c9c0e0a3e1b4a7d3e23b717a [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>
Brian O'Connore642f7c2016-05-23 18:33:04 -070024 <version>1.7.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>
38 <groupId>org.onosproject</groupId>
39 <artifactId>onos-netconf-api</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42 <dependency>
andreaeb70a942015-10-16 21:34:46 -070043 <groupId>ch.ethz.ganymed</groupId>
44 <artifactId>ganymed-ssh2</artifactId>
45 <version>262</version>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070046 </dependency>
Andreas Papazois4752cfa2016-04-25 14:52:12 +030047 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId>
50 <classifier>tests</classifier>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onlab-osgi</artifactId>
56 <version>${project.version}</version>
57 <classifier>tests</classifier>
58 <scope>test</scope>
59 </dependency>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070060 </dependencies>
andreaeb70a942015-10-16 21:34:46 -070061
62 <build>
63 <plugins>
64 <!--plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-shade-plugin</artifactId>
67 <version>2.3</version>
68 <configuration>
69 <filters>
70 <filter>
71 <artifact>ch.ethz.ganymed:ganymed-ssh2</artifact>
72 <includes>
73 <include>ch/ethz/ssh2/**</include>
74 </includes>
75 </filter>
76 <filter>
77 <artifact>org.jdom:jdom2</artifact>
78 <includes>
79 <include>org/jdom2/**</include>
80 </includes>
81 </filter>
82 </filters>
83 </configuration>
84 <executions>
85 <execution>
86 <phase>package</phase>
87 <goals>
88 <goal>shade</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin-->
93 <plugin>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>maven-bundle-plugin</artifactId>
96 <configuration>
97 <instructions>
98 <Private-Package>ch.ethz.ssh2.*</Private-Package>
99 <Embed-Dependecy>ganymed-ssh2</Embed-Dependecy>
100 </instructions>
101 </configuration>
102 </plugin>
Andrea Campanella0ea82252015-12-04 11:22:36 -0800103 <plugin>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>maven-scr-plugin</artifactId>
106 </plugin>
andreaeb70a942015-10-16 21:34:46 -0700107 </plugins>
108 </build>
Thomas Vachuska1e60f972015-10-19 09:55:52 -0700109</project>