blob: 5130b272de98288f9089dbac1751b5e8d38a0cd3 [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
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"
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>
25 <version>1.6.0-SNAPSHOT</version>
26 <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>
31 <version>1.0-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>
36 <onos.version>1.6.0-SNAPSHOT</onos.version>
37 <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>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onos-cord-config</artifactId>
60 <version>${onos.version}</version>
61 </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>
81 <artifactId>onos-core-common</artifactId>
82 <version>${onos.version}</version>
83 </dependency>
84 </dependencies>
85
alshabibf0e7e702015-05-30 18:22:36 -070086</project>