janani b | f7060cd | 2017-03-28 19:06:30 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2017-present 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/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <build> |
| 22 | <plugins> |
| 23 | <plugin> |
| 24 | <groupId>org.apache.maven.plugins</groupId> |
| 25 | <artifactId>maven-compiler-plugin</artifactId> |
| 26 | <configuration> |
| 27 | <source>1.7</source> |
| 28 | <target>1.7</target> |
| 29 | </configuration> |
| 30 | </plugin> |
| 31 | </plugins> |
| 32 | </build> |
| 33 | |
| 34 | <parent> |
| 35 | <groupId>org.onosproject</groupId> |
| 36 | <artifactId>onos-drivers-huawei</artifactId> |
| 37 | <version>1.10.0-SNAPSHOT</version> |
| 38 | <relativePath>../pom.xml</relativePath> |
| 39 | </parent> |
| 40 | |
| 41 | <artifactId>onos-drivers-huawei-driver</artifactId> |
| 42 | <packaging>pom</packaging> |
| 43 | |
| 44 | <description>Huawei driver implementation</description> |
| 45 | <properties> |
| 46 | <yang-tool-version>1.12.0-b7</yang-tool-version> |
| 47 | </properties> |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>org.onosproject</groupId> |
| 51 | <artifactId>onos-drivers-utilities</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onos-app-l3vpn-netl3vpn</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-app-l3vpn-yangmodel</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.onosproject</groupId> |
| 66 | <artifactId>onos-yang-model</artifactId> |
| 67 | <version>${yang-tool-version}</version> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.onosproject</groupId> |
| 71 | <artifactId>onos-drivers-huawei-yangmodel</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.onosproject</groupId> |
| 76 | <artifactId>onos-netconf-api</artifactId> |
| 77 | <version>1.10.0-SNAPSHOT</version> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.onosproject</groupId> |
| 81 | <artifactId>onos-app-yang</artifactId> |
| 82 | <version>1.10.0-SNAPSHOT</version> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.apache.servicemix.bundles</groupId> |
| 86 | <artifactId>org.apache.servicemix.bundles.dom4j</artifactId> |
| 87 | <version>1.6.1_5</version> |
| 88 | </dependency> |
| 89 | </dependencies> |
| 90 | </project> |