blob: aea49d45306db264c811fcaab7ff2f80f40a70a1 [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 Chanaf2a56e2016-06-26 22:37:59 -070025 <version>1.6.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>
alshabibc3470432016-09-02 10:28:36 -070031 <version>1.0.0</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080032 <packaging>pom</packaging>
alshabib36a4d732016-06-01 16:03:59 -070033
alshabib528d8252016-07-09 11:35:31 +020034<!--
35 <repositories>
alshabib99dbdfe2016-06-02 22:02:33 -070036 <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>
alshabib528d8252016-07-09 11:35:31 +020042-->
alshabib99dbdfe2016-06-02 22:02:33 -070043
alshabib36a4d732016-06-01 16:03:59 -070044 <properties>
45 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Charles Chanaf2a56e2016-06-26 22:37:59 -070046 <onos.version>1.6.0</onos.version>
alshabib36a4d732016-06-01 16:03:59 -070047 <onos.app.name>org.opencord.olt</onos.app.name>
48 <onos.app.title>OLT Access Management</onos.app.title>
49 <onos.app.origin>OpenCord</onos.app.origin>
50 <onos.app.category>default</onos.app.category>
51 <onos.app.url>http://opencord.org</onos.app.url>
52 <onos.app.readme>CORD OLT Access management application</onos.app.readme>
53 </properties>
alshabibf0e7e702015-05-30 18:22:36 -070054
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080055 <modules>
56 <module>api</module>
57 <module>app</module>
58 </modules>
alshabibf0e7e702015-05-30 18:22:36 -070059
alshabib36a4d732016-06-01 16:03:59 -070060
61 <dependencies>
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onos-api</artifactId>
65 <version>${onos.version}</version>
66 </dependency>
67 <dependency>
alshabibf3a573e2016-06-01 17:39:10 -070068 <groupId>org.opencord</groupId>
Jonathan Hartbf318602016-06-13 13:46:02 -070069 <artifactId>cord-config</artifactId>
alshabibf3a573e2016-06-01 17:39:10 -070070 <version>${project.version}</version>
alshabib36a4d732016-06-01 16:03:59 -070071 </dependency>
72
73 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onlab-misc</artifactId>
77 <version>${onos.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onlab-osgi</artifactId>
82 <version>${onos.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.onosproject</groupId>
86 <artifactId>onos-incubator-api</artifactId>
87 <version>${onos.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.onosproject</groupId>
91 <artifactId>onos-core-common</artifactId>
92 <version>${onos.version}</version>
93 </dependency>
94 </dependencies>
95
alshabibf0e7e702015-05-30 18:22:36 -070096</project>