blob: fb33ed36967907daeaf57b92d9cae161fe15fb67 [file] [log] [blame]
alshabibf0e7e702015-05-30 18:22:36 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connord4fbd352016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
alshabibf0e7e702015-05-30 18:22:36 -07004 ~
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
alshabibbb470372016-06-24 17:59:04 +020015 ~ limitations under the License.
alshabibf0e7e702015-05-30 18:22:36 -070016 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Ray Milkey17481412015-12-09 09:16:26 -080019 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Ray Milkey17481412015-12-09 09:16:26 -080020 <modelVersion>4.0.0</modelVersion>
alshabibf0e7e702015-05-30 18:22:36 -070021
alshabib36a4d732016-06-01 16:03:59 -070022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos</artifactId>
alshabibb47cdac2016-09-27 14:25:51 -070025 <version>1.7.0</version>
alshabib36a4d732016-06-01 16:03:59 -070026 <relativePath></relativePath>
27 </parent>
alshabibf0e7e702015-05-30 18:22:36 -070028
alshabib36a4d732016-06-01 16:03:59 -070029 <groupId>org.opencord</groupId>
30 <artifactId>olt</artifactId>
alshabib10a2b632016-08-03 14:06:00 -070031 <version>1.1-SNAPSHOT</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080032 <packaging>pom</packaging>
alshabib36a4d732016-06-01 16:03:59 -070033
34 <properties>
35 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
alshabibb47cdac2016-09-27 14:25:51 -070036 <onos.version>1.7.0</onos.version>
alshabib36a4d732016-06-01 16:03:59 -070037 <onos.app.name>org.opencord.olt</onos.app.name>
38 <onos.app.title>OLT Access Management</onos.app.title>
39 <onos.app.origin>OpenCord</onos.app.origin>
40 <onos.app.category>default</onos.app.category>
41 <onos.app.url>http://opencord.org</onos.app.url>
42 <onos.app.readme>CORD OLT Access management application</onos.app.readme>
43 </properties>
alshabibf0e7e702015-05-30 18:22:36 -070044
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080045 <modules>
46 <module>api</module>
47 <module>app</module>
48 </modules>
alshabibf0e7e702015-05-30 18:22:36 -070049
alshabib36a4d732016-06-01 16:03:59 -070050
51 <dependencies>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-api</artifactId>
55 <version>${onos.version}</version>
56 </dependency>
57 <dependency>
alshabibf3a573e2016-06-01 17:39:10 -070058 <groupId>org.opencord</groupId>
Jonathan Hartbf318602016-06-13 13:46:02 -070059 <artifactId>cord-config</artifactId>
alshabibf3a573e2016-06-01 17:39:10 -070060 <version>${project.version}</version>
alshabib36a4d732016-06-01 16:03:59 -070061 </dependency>
62
63 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-misc</artifactId>
67 <version>${onos.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onlab-osgi</artifactId>
72 <version>${onos.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-incubator-api</artifactId>
77 <version>${onos.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.onosproject</groupId>
alshabibb47cdac2016-09-27 14:25:51 -070081 <artifactId>onos-incubator-net</artifactId>
82 <version>${onos.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.onosproject</groupId>
alshabib36a4d732016-06-01 16:03:59 -070086 <artifactId>onos-core-common</artifactId>
87 <version>${onos.version}</version>
88 </dependency>
89 </dependencies>
alshabibab4be622016-08-26 10:58:07 -070090
alshabibf0e7e702015-05-30 18:22:36 -070091</project>