blob: 83f71dfa7b3c471132f6f04dc1b651e10417a7f5 [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>
Charles Chan33966852016-06-23 15:15:36 -070025 <version>1.6.0-SNAPSHOT</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>
31 <version>1.0-SNAPSHOT</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080032 <packaging>pom</packaging>
alshabib36a4d732016-06-01 16:03:59 -070033
alshabib99dbdfe2016-06-02 22:02:33 -070034 <!--FIXME remove this one the released bits are out-->
35 <repositories>
36 <repository>
37 <id>oss-staging</id>
38 <name>OSS Staging</name>
39 <url>https://oss.sonatype.org/content/groups/staging</url>
40 </repository>
Hyunsun Moonc196d942016-06-09 18:04:41 -070041 </repositories>
alshabib99dbdfe2016-06-02 22:02:33 -070042
alshabib36a4d732016-06-01 16:03:59 -070043 <properties>
44 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Charles Chan33966852016-06-23 15:15:36 -070045 <onos.version>1.6.0-SNAPSHOT</onos.version>
alshabib36a4d732016-06-01 16:03:59 -070046 <onos.app.name>org.opencord.olt</onos.app.name>
47 <onos.app.title>OLT Access Management</onos.app.title>
48 <onos.app.origin>OpenCord</onos.app.origin>
49 <onos.app.category>default</onos.app.category>
50 <onos.app.url>http://opencord.org</onos.app.url>
51 <onos.app.readme>CORD OLT Access management application</onos.app.readme>
52 </properties>
alshabibf0e7e702015-05-30 18:22:36 -070053
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080054 <modules>
55 <module>api</module>
56 <module>app</module>
57 </modules>
alshabibf0e7e702015-05-30 18:22:36 -070058
alshabib36a4d732016-06-01 16:03:59 -070059
60 <dependencies>
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onos-api</artifactId>
64 <version>${onos.version}</version>
65 </dependency>
66 <dependency>
alshabibf3a573e2016-06-01 17:39:10 -070067 <groupId>org.opencord</groupId>
Jonathan Hartbf318602016-06-13 13:46:02 -070068 <artifactId>cord-config</artifactId>
alshabibf3a573e2016-06-01 17:39:10 -070069 <version>${project.version}</version>
alshabib36a4d732016-06-01 16:03:59 -070070 </dependency>
71
72 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onlab-misc</artifactId>
76 <version>${onos.version}</version>
77 </dependency>
78 <dependency>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onlab-osgi</artifactId>
81 <version>${onos.version}</version>
82 </dependency>
83 <dependency>
84 <groupId>org.onosproject</groupId>
85 <artifactId>onos-incubator-api</artifactId>
86 <version>${onos.version}</version>
87 </dependency>
88 <dependency>
89 <groupId>org.onosproject</groupId>
90 <artifactId>onos-core-common</artifactId>
91 <version>${onos.version}</version>
92 </dependency>
93 </dependencies>
94
alshabibf0e7e702015-05-30 18:22:36 -070095</project>