blob: 3066d98633c01b67545281af5d6fd0e3b1feb531 [file] [log] [blame]
Andreas Pantelopoulosa5f837f2018-02-24 16:35:59 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-present Open Networking Foundation
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
22 <parent>
23 <artifactId>onos-apps-segmentrouting</artifactId>
24 <groupId>org.onosproject</groupId>
25 <version>1.12.1-SNAPSHOT</version>
26 </parent>
27
28 <artifactId>onos-apps-segmentrouting-app</artifactId>
29 <packaging>bundle</packaging>
30
31 <url>http://onosproject.org</url>
32
33 <description>Segment Routing Application</description>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.onosproject</groupId>
38 <artifactId>onos-cli</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-core-serializers</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.karaf.shell</groupId>
48 <artifactId>org.apache.karaf.shell.console</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.glassfish.jersey.containers</groupId>
52 <artifactId>jersey-container-servlet</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>org.osgi</groupId>
56 <artifactId>org.osgi.compendium</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.osgi</groupId>
60 <artifactId>org.osgi.core</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onlab-junit</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-api</artifactId>
70 <scope>test</scope>
71 <classifier>tests</classifier>
72 </dependency>
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onos-incubator-api</artifactId>
76 <version>${project.version}</version>
77 <scope>test</scope>
78 <classifier>tests</classifier>
79 </dependency>
80 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-apps-route-service-api</artifactId>
83 <version>${project.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.onosproject</groupId>
87 <artifactId>onos-apps-route-service-api</artifactId>
88 <version>${project.version}</version>
89 <classifier>tests</classifier>
90 <scope>test</scope>
91 </dependency>
92 </dependencies>
93</project>