blob: d26ab406a0dde585cc5356418b2e6f61c02eab80 [file] [log] [blame]
Andreas Pantelopoulos85001182018-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 --><project xmlns="http://maven.apache.org/POM/4.0.0"
17 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <artifactId>onos-apps-segmentrouting</artifactId>
23 <groupId>org.onosproject</groupId>
Ray Milkey78ce4002018-08-10 11:16:44 -070024 <version>1.14.0-b1</version>
Andreas Pantelopoulos85001182018-02-24 16:35:59 -080025 </parent>
26
27 <artifactId>onos-apps-segmentrouting-app</artifactId>
28 <packaging>bundle</packaging>
29
30 <url>http://onosproject.org</url>
31
32 <description>Segment Routing Application</description>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.onosproject</groupId>
37 <artifactId>onos-cli</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-core-serializers</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.karaf.shell</groupId>
47 <artifactId>org.apache.karaf.shell.console</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.glassfish.jersey.containers</groupId>
51 <artifactId>jersey-container-servlet</artifactId>
52 </dependency>
53 <dependency>
Andreas Pantelopoulos85001182018-02-24 16:35:59 -080054 <groupId>org.onosproject</groupId>
55 <artifactId>onlab-junit</artifactId>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-api</artifactId>
61 <scope>test</scope>
62 <classifier>tests</classifier>
63 </dependency>
64 <dependency>
65 <groupId>org.onosproject</groupId>
Charles Chan971d7ba2018-05-01 11:50:20 -070066 <artifactId>onos-core-net</artifactId>
67 <version>${project.version}</version>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.onosproject</groupId>
Andreas Pantelopoulos85001182018-02-24 16:35:59 -080072 <artifactId>onos-incubator-api</artifactId>
73 <version>${project.version}</version>
74 <scope>test</scope>
75 <classifier>tests</classifier>
76 </dependency>
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onos-apps-route-service-api</artifactId>
80 <version>${project.version}</version>
81 </dependency>
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onos-apps-route-service-api</artifactId>
85 <version>${project.version}</version>
86 <classifier>tests</classifier>
87 <scope>test</scope>
88 </dependency>
Pier3ee24552018-03-14 16:47:32 -070089 <dependency>
90 <groupId>org.onosproject</groupId>
Pier20162882018-04-05 22:01:57 +020091 <artifactId>onos-apps-mcast-api</artifactId>
Pier3ee24552018-03-14 16:47:32 -070092 <version>${project.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>org.onosproject</groupId>
Pier20162882018-04-05 22:01:57 +020096 <artifactId>onos-apps-mcast-cli</artifactId>
Pier3ee24552018-03-14 16:47:32 -070097 <version>${project.version}</version>
98 </dependency>
Andreas Pantelopoulos85001182018-02-24 16:35:59 -080099 </dependencies>
100</project>