blob: 0fd1e0e8c8d7b23831349ea88723e706ab18c4c8 [file] [log] [blame]
Mayank Tiwarif642fe32019-01-10 18:07:01 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2019 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 <parent>
22 <artifactId>onos-apps</artifactId>
23 <groupId>org.onosproject</groupId>
24 <version>1.12.2-SNAPSHOT</version>
25 </parent>
26
27 <groupId>org.onosproject</groupId>
28 <artifactId>onos-apps-packet-throttle-app</artifactId>
29 <version>1.12.2-SNAPSHOT</version>
30 <packaging>bundle</packaging>
31
32 <properties>
33 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34 <onos.version>1.12.2-SNAPSHOT</onos.version>
35 </properties>
36
37 <dependencies>
38
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onlab-osgi</artifactId>
42 <version>${onos.version}</version>
43 </dependency>
44
45 <dependency>
46 <groupId>junit</groupId>
47 <artifactId>junit</artifactId>
48 <version>4.12</version>
49 <scope>test</scope>
50 </dependency>
51
52 <dependency>
53 <groupId>org.osgi</groupId>
54 <artifactId>org.osgi.service.component.annotations</artifactId>
55 <version>1.4.0</version>
56 <scope>provided</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>org.osgi</groupId>
61 <artifactId>org.osgi.core</artifactId>
62 <version>5.0.0</version>
63 <scope>provided</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-api</artifactId>
69 <classifier>tests</classifier>
70 <scope>test</scope>
71 </dependency>
72
73 <dependency>
74 <groupId>org.apache.karaf.shell</groupId>
75 <artifactId>org.apache.karaf.shell.console</artifactId>
76 <version>4.2.1</version>
77 <scope>provided</scope>
78 </dependency>
79
80 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-cli</artifactId>
83 <version>${onos.version}</version>
84 <scope>provided</scope>
85 </dependency>
86 </dependencies>
87</project>