Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 4 | ~ |
| 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 Milkey | 287b4ae | 2017-01-19 15:21:17 -0800 | [diff] [blame] | 24 | <version>1.9.0-SNAPSHOT</version> |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-netconf-ctl</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
Thomas Vachuska | d82c71a | 2015-12-01 18:59:03 -0800 | [diff] [blame] | 30 | <description>ONOS NETCONF plugin controller</description> |
| 31 | |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 32 | <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> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 43 | <groupId>ch.ethz.ganymed</groupId> |
| 44 | <artifactId>ganymed-ssh2</artifactId> |
| 45 | <version>262</version> |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 46 | </dependency> |
Andreas Papazois | 4752cfa | 2016-04-25 14:52:12 +0300 | [diff] [blame] | 47 | <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 Papazois | 4752cfa | 2016-04-25 14:52:12 +0300 | [diff] [blame] | 56 | <classifier>tests</classifier> |
| 57 | <scope>test</scope> |
| 58 | </dependency> |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 59 | </dependencies> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 60 | |
| 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 Campanella | 0ea8225 | 2015-12-04 11:22:36 -0800 | [diff] [blame] | 102 | <plugin> |
| 103 | <groupId>org.apache.felix</groupId> |
| 104 | <artifactId>maven-scr-plugin</artifactId> |
| 105 | </plugin> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 106 | </plugins> |
| 107 | </build> |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 108 | </project> |