blob: 7dbf0cc36edec7a036d91bc409db2b67fce61208 [file] [log] [blame]
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2016-present Open Networking Foundation
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +09004 ~
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
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-apps</artifactId>
Ray Milkey64677e92017-08-01 10:48:08 -070025 <version>1.11.0-SNAPSHOT</version>
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +090026 </parent>
27
Hyunsun Moon1424ac92016-07-09 15:45:13 -070028 <artifactId>onos-app-scalablegateway</artifactId>
Hyunsun Moon71701292016-05-09 12:00:54 -070029 <packaging>bundle</packaging>
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +090030
Hyunsun Moon71701292016-05-09 12:00:54 -070031 <description>ONOS Scalable Gateway applications</description>
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +090032
Hyunsun Moon71701292016-05-09 12:00:54 -070033 <properties>
34 <onos.app.name>org.onosproject.scalablegateway</onos.app.name>
35 <onos.app.title>Scalable Gateway App</onos.app.title>
36 <onos.app.category>Utility</onos.app.category>
37 <onos.app.url>http://onosproject.org</onos.app.url>
38 <onos.app.readm>Scalable Gateway Application.</onos.app.readm>
39 </properties>
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +090040
Hyunsun Moon71701292016-05-09 12:00:54 -070041 <dependencies>
42 <dependency>
43 <groupId>org.osgi</groupId>
44 <artifactId>org.osgi.compendium</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-api</artifactId>
Kyuhwi Choidc2973b2016-05-13 14:54:31 +090049 </dependency>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-core-serializers</artifactId>
53 <version>${project.version}</version>
Hyunsun Moon71701292016-05-09 12:00:54 -070054 </dependency>
Kyuhwi Choi70537882016-06-24 17:24:12 +090055 <dependency>
56 <groupId>org.apache.karaf.shell</groupId>
57 <artifactId>org.apache.karaf.shell.console</artifactId>
Kyuhwi Choi70537882016-06-24 17:24:12 +090058 </dependency>
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-cli</artifactId>
Thomas Vachuska0439fd72017-03-24 10:05:39 -070062 <version>${project.version}</version>
Kyuhwi Choi70537882016-06-24 17:24:12 +090063 </dependency>
Hyunsun Moon71701292016-05-09 12:00:54 -070064 </dependencies>
Kyuhwi Choic5b33ea2016-04-26 11:45:32 +090065</project>