blob: fde7a4949a827ce7ff84757ad9bb6b39fff859b3 [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 Milkeyb547e062016-11-30 15:10:18 -080024 <version>1.8.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>
Andreas Papazois4752cfa2016-04-25 14:52:12 +030056 <classifier>tests</classifier>
57 <scope>test</scope>
58 </dependency>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070059 </dependencies>
andreaeb70a942015-10-16 21:34:46 -070060
61 <build>
62 <plugins>
63 <!--plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-shade-plugin</artifactId>
66 <version>2.3</version>
67 <configuration>
68 <filters>
69 <filter>
70 <artifact>ch.ethz.ganymed:ganymed-ssh2</artifact>
71 <includes>
72 <include>ch/ethz/ssh2/**</include>
73 </includes>
74 </filter>
75 <filter>
76 <artifact>org.jdom:jdom2</artifact>
77 <includes>
78 <include>org/jdom2/**</include>
79 </includes>
80 </filter>
81 </filters>
82 </configuration>
83 <executions>
84 <execution>
85 <phase>package</phase>
86 <goals>
87 <goal>shade</goal>
88 </goals>
89 </execution>
90 </executions>
91 </plugin-->
92 <plugin>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>maven-bundle-plugin</artifactId>
95 <configuration>
96 <instructions>
97 <Private-Package>ch.ethz.ssh2.*</Private-Package>
98 <Embed-Dependecy>ganymed-ssh2</Embed-Dependecy>
99 </instructions>
100 </configuration>
101 </plugin>
Andrea Campanella0ea82252015-12-04 11:22:36 -0800102 <plugin>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>maven-scr-plugin</artifactId>
105 </plugin>
andreaeb70a942015-10-16 21:34:46 -0700106 </plugins>
107 </build>
Thomas Vachuska1e60f972015-10-19 09:55:52 -0700108</project>