Jian Li | b695762 | 2016-07-01 15:12:25 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
Jian Li | b695762 | 2016-07-01 15:12:25 +0900 | [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-lisp</artifactId> |
ONOS Jenkins User | 45d340c | 2018-01-09 01:56:13 +0000 | [diff] [blame] | 24 | <version>1.13.0-SNAPSHOT</version> |
Jian Li | b695762 | 2016-07-01 15:12:25 +0900 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-lisp-ctl</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>ONOS LISP plugin controller</description> |
| 31 | |
| 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-lisp-api</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.onosproject</groupId> |
Jian Li | e4f1216 | 2016-09-13 00:09:09 +0900 | [diff] [blame] | 44 | <artifactId>onos-lisp-msg</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
Jian Li | 7ccc3a8 | 2016-12-09 01:30:56 +0900 | [diff] [blame] | 48 | <groupId>io.netty</groupId> |
| 49 | <artifactId>netty-transport-native-epoll</artifactId> |
| 50 | <version>${netty4.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
Jian Li | e4f1216 | 2016-09-13 00:09:09 +0900 | [diff] [blame] | 53 | <groupId>org.onosproject</groupId> |
Jian Li | b695762 | 2016-07-01 15:12:25 +0900 | [diff] [blame] | 54 | <artifactId>onos-api</artifactId> |
| 55 | <classifier>tests</classifier> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.onosproject</groupId> |
| 60 | <artifactId>onlab-osgi</artifactId> |
Jian Li | b695762 | 2016-07-01 15:12:25 +0900 | [diff] [blame] | 61 | <classifier>tests</classifier> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
Jian Li | 834ff72 | 2016-12-13 19:43:02 +0900 | [diff] [blame] | 64 | <dependency> |
| 65 | <groupId>org.onosproject</groupId> |
| 66 | <artifactId>onos-lisp-api</artifactId> |
| 67 | <version>${project.version}</version> |
| 68 | <classifier>tests</classifier> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
Jian Li | 49f525f | 2017-06-07 02:17:51 +0900 | [diff] [blame] | 71 | <dependency> |
| 72 | <groupId>com.googlecode.concurrent-trees</groupId> |
| 73 | <artifactId>concurrent-trees</artifactId> |
Jian Li | 49f525f | 2017-06-07 02:17:51 +0900 | [diff] [blame] | 74 | </dependency> |
Jian Li | 834ff72 | 2016-12-13 19:43:02 +0900 | [diff] [blame] | 75 | |
Jian Li | b695762 | 2016-07-01 15:12:25 +0900 | [diff] [blame] | 76 | </dependencies> |
| 77 | |
| 78 | <build> |
| 79 | <plugins> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.felix</groupId> |
| 82 | <artifactId>maven-scr-plugin</artifactId> |
| 83 | </plugin> |
| 84 | </plugins> |
| 85 | </build> |
| 86 | </project> |