blob: 4f9795bda66cde00f28c9a25b0e391d4411def21 [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'Connor955c3162016-03-10 15:27:19 -080024 <version>1.6.0-SNAPSHOT</version>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070025 <relativePath>../pom.xml</relativePath>
26 </parent>
27
28 <artifactId>onos-netconf-ctl</artifactId>
29 <packaging>bundle</packaging>
30
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080031 <description>ONOS NETCONF plugin controller</description>
32
Thomas Vachuska1e60f972015-10-19 09:55:52 -070033 <dependencies>
34 <dependency>
35 <groupId>org.osgi</groupId>
36 <artifactId>org.osgi.compendium</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onos-netconf-api</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43 <dependency>
andreaeb70a942015-10-16 21:34:46 -070044 <groupId>ch.ethz.ganymed</groupId>
45 <artifactId>ganymed-ssh2</artifactId>
46 <version>262</version>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070047 </dependency>
Andreas Papazois4752cfa2016-04-25 14:52:12 +030048 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-api</artifactId>
51 <classifier>tests</classifier>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onlab-osgi</artifactId>
57 <version>${project.version}</version>
58 <classifier>tests</classifier>
59 <scope>test</scope>
60 </dependency>
Thomas Vachuska1e60f972015-10-19 09:55:52 -070061 </dependencies>
andreaeb70a942015-10-16 21:34:46 -070062
63 <build>
64 <plugins>
65 <!--plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-shade-plugin</artifactId>
68 <version>2.3</version>
69 <configuration>
70 <filters>
71 <filter>
72 <artifact>ch.ethz.ganymed:ganymed-ssh2</artifact>
73 <includes>
74 <include>ch/ethz/ssh2/**</include>
75 </includes>
76 </filter>
77 <filter>
78 <artifact>org.jdom:jdom2</artifact>
79 <includes>
80 <include>org/jdom2/**</include>
81 </includes>
82 </filter>
83 </filters>
84 </configuration>
85 <executions>
86 <execution>
87 <phase>package</phase>
88 <goals>
89 <goal>shade</goal>
90 </goals>
91 </execution>
92 </executions>
93 </plugin-->
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-bundle-plugin</artifactId>
97 <configuration>
98 <instructions>
99 <Private-Package>ch.ethz.ssh2.*</Private-Package>
100 <Embed-Dependecy>ganymed-ssh2</Embed-Dependecy>
101 </instructions>
102 </configuration>
103 </plugin>
Andrea Campanella0ea82252015-12-04 11:22:36 -0800104 <plugin>
105 <groupId>org.apache.felix</groupId>
106 <artifactId>maven-scr-plugin</artifactId>
107 </plugin>
andreaeb70a942015-10-16 21:34:46 -0700108 </plugins>
109 </build>
Thomas Vachuska1e60f972015-10-19 09:55:52 -0700110</project>