Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2015 Open Networking Laboratory |
| 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> |
Brian O'Connor | 880dc20d | 2015-12-16 22:53:14 -0800 | [diff] [blame] | 24 | <version>1.5.0-SNAPSHOT</version> |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 25 | <relativePath>../pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-netconf-ctl</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
Thomas Vachuska | d82c71a | 2015-12-01 18:59:03 -0800 | [diff] [blame] | 31 | <description>ONOS NETCONF plugin controller</description> |
| 32 | |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 33 | <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> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 44 | <groupId>ch.ethz.ganymed</groupId> |
| 45 | <artifactId>ganymed-ssh2</artifactId> |
| 46 | <version>262</version> |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 47 | </dependency> |
| 48 | </dependencies> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 49 | |
| 50 | <build> |
| 51 | <plugins> |
| 52 | <!--plugin> |
| 53 | <groupId>org.apache.maven.plugins</groupId> |
| 54 | <artifactId>maven-shade-plugin</artifactId> |
| 55 | <version>2.3</version> |
| 56 | <configuration> |
| 57 | <filters> |
| 58 | <filter> |
| 59 | <artifact>ch.ethz.ganymed:ganymed-ssh2</artifact> |
| 60 | <includes> |
| 61 | <include>ch/ethz/ssh2/**</include> |
| 62 | </includes> |
| 63 | </filter> |
| 64 | <filter> |
| 65 | <artifact>org.jdom:jdom2</artifact> |
| 66 | <includes> |
| 67 | <include>org/jdom2/**</include> |
| 68 | </includes> |
| 69 | </filter> |
| 70 | </filters> |
| 71 | </configuration> |
| 72 | <executions> |
| 73 | <execution> |
| 74 | <phase>package</phase> |
| 75 | <goals> |
| 76 | <goal>shade</goal> |
| 77 | </goals> |
| 78 | </execution> |
| 79 | </executions> |
| 80 | </plugin--> |
| 81 | <plugin> |
| 82 | <groupId>org.apache.felix</groupId> |
| 83 | <artifactId>maven-bundle-plugin</artifactId> |
| 84 | <configuration> |
| 85 | <instructions> |
| 86 | <Private-Package>ch.ethz.ssh2.*</Private-Package> |
| 87 | <Embed-Dependecy>ganymed-ssh2</Embed-Dependecy> |
| 88 | </instructions> |
| 89 | </configuration> |
| 90 | </plugin> |
Andrea Campanella | 0ea8225 | 2015-12-04 11:22:36 -0800 | [diff] [blame] | 91 | <plugin> |
| 92 | <groupId>org.apache.felix</groupId> |
| 93 | <artifactId>maven-scr-plugin</artifactId> |
| 94 | </plugin> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 95 | </plugins> |
| 96 | </build> |
Thomas Vachuska | 1e60f97 | 2015-10-19 09:55:52 -0700 | [diff] [blame] | 97 | </project> |