Mahesh Raju-Huawei | 8593005 | 2016-04-26 21:09:57 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2016-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 | <parent> |
| 22 | <groupId>org.onosproject</groupId> |
| 23 | <artifactId>onos-pce</artifactId> |
Ray Milkey | 08b03a9 | 2017-05-15 11:26:33 -0700 | [diff] [blame] | 24 | <version>1.11.0-SNAPSHOT</version> |
Mahesh Raju-Huawei | 8593005 | 2016-04-26 21:09:57 +0530 | [diff] [blame] | 25 | </parent> |
| 26 | <artifactId>onos-app-pce</artifactId> |
| 27 | <packaging>bundle</packaging> |
| 28 | |
| 29 | <description>PCE as central controller</description> |
| 30 | |
| 31 | <properties> |
| 32 | <onos.app.name>org.onosproject.pce</onos.app.name> |
| 33 | <onos.app.category>default</onos.app.category> |
| 34 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 35 | <onos.app.readme>PCE as central controller.</onos.app.readme> |
| 36 | </properties> |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>org.osgi</groupId> |
| 40 | <artifactId>org.osgi.compendium</artifactId> |
| 41 | </dependency> |
| 42 | |
| 43 | <dependency> |
| 44 | <groupId>org.onosproject</groupId> |
| 45 | <artifactId>onos-cli</artifactId> |
| 46 | <version>${project.version}</version> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>org.apache.karaf.shell</groupId> |
| 51 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 52 | <scope>compile</scope> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
| 57 | <artifactId>onlab-junit</artifactId> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.onosproject</groupId> |
| 62 | <artifactId>onos-core-serializers</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>com.google.guava</groupId> |
| 67 | <artifactId>guava-testlib</artifactId> |
| 68 | <scope>test</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
Mahesh Raju-Huawei | 8593005 | 2016-04-26 21:09:57 +0530 | [diff] [blame] | 71 | <groupId>org.onosproject</groupId> |
| 72 | <artifactId>onlab-osgi</artifactId> |
| 73 | <classifier>tests</classifier> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.onosproject</groupId> |
| 78 | <artifactId>onos-api</artifactId> |
| 79 | <scope>test</scope> |
| 80 | <classifier>tests</classifier> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
| 84 | <artifactId>onos-rest</artifactId> |
| 85 | <version>${project.version}</version> |
| 86 | </dependency> |
| 87 | <dependency> |
Mahesh Raju-Huawei | 8593005 | 2016-04-26 21:09:57 +0530 | [diff] [blame] | 88 | <groupId>javax.ws.rs</groupId> |
| 89 | <artifactId>jsr311-api</artifactId> |
| 90 | <version>1.1.1</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>com.fasterxml.jackson.core</groupId> |
| 94 | <artifactId>jackson-databind</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>com.fasterxml.jackson.core</groupId> |
| 98 | <artifactId>jackson-annotations</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
Mahesh Raju-Huawei | 8593005 | 2016-04-26 21:09:57 +0530 | [diff] [blame] | 101 | <groupId>org.onosproject</groupId> |
| 102 | <artifactId>onos-incubator-api</artifactId> |
Mahesh Raju-Huawei | 8593005 | 2016-04-26 21:09:57 +0530 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.onosproject</groupId> |
Avantika-Huawei | fe44ea6 | 2016-05-27 19:21:24 +0530 | [diff] [blame] | 106 | <artifactId>onos-app-pcep-api</artifactId> |
Avantika-Huawei | fe44ea6 | 2016-05-27 19:21:24 +0530 | [diff] [blame] | 107 | </dependency> |
Priyanka B | bae0eeb1 | 2016-11-30 11:59:48 +0530 | [diff] [blame] | 108 | <dependency> |
| 109 | <groupId>org.easymock</groupId> |
| 110 | <artifactId>easymock</artifactId> |
| 111 | <scope>test</scope> |
| 112 | </dependency> |
Satish K | 2eb5d84 | 2017-04-04 16:28:37 +0530 | [diff] [blame] | 113 | <dependency> |
| 114 | <groupId>org.onosproject</groupId> |
| 115 | <artifactId>onos-app-bandwidthmgmt</artifactId> |
| 116 | <version>${project.version}</version> |
| 117 | </dependency> |
| 118 | </dependencies> |
Mahesh Raju-Huawei | 8593005 | 2016-04-26 21:09:57 +0530 | [diff] [blame] | 119 | </project> |