alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | d4fbd35 | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 4 | ~ |
| 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 Milkey | 1748141 | 2015-12-09 09:16:26 -0800 | [diff] [blame] | 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Ray Milkey | 1748141 | 2015-12-09 09:16:26 -0800 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 21 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos</artifactId> |
Charles Chan | 3396685 | 2016-06-23 15:15:36 -0700 | [diff] [blame^] | 25 | <version>1.6.0-SNAPSHOT</version> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 26 | <relativePath></relativePath> |
| 27 | </parent> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 28 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 29 | <groupId>org.opencord</groupId> |
| 30 | <artifactId>olt</artifactId> |
| 31 | <version>1.0-SNAPSHOT</version> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 32 | <packaging>pom</packaging> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 33 | |
alshabib | 99dbdfe | 2016-06-02 22:02:33 -0700 | [diff] [blame] | 34 | <!--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 Moon | c196d94 | 2016-06-09 18:04:41 -0700 | [diff] [blame] | 41 | </repositories> |
alshabib | 99dbdfe | 2016-06-02 22:02:33 -0700 | [diff] [blame] | 42 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 43 | <properties> |
| 44 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Charles Chan | 3396685 | 2016-06-23 15:15:36 -0700 | [diff] [blame^] | 45 | <onos.version>1.6.0-SNAPSHOT</onos.version> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 46 | <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> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 53 | |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 54 | <modules> |
| 55 | <module>api</module> |
| 56 | <module>app</module> |
| 57 | </modules> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 58 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 59 | |
| 60 | <dependencies> |
| 61 | <dependency> |
| 62 | <groupId>org.onosproject</groupId> |
| 63 | <artifactId>onos-api</artifactId> |
| 64 | <version>${onos.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
alshabib | f3a573e | 2016-06-01 17:39:10 -0700 | [diff] [blame] | 67 | <groupId>org.opencord</groupId> |
Jonathan Hart | bf31860 | 2016-06-13 13:46:02 -0700 | [diff] [blame] | 68 | <artifactId>cord-config</artifactId> |
alshabib | f3a573e | 2016-06-01 17:39:10 -0700 | [diff] [blame] | 69 | <version>${project.version}</version> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 70 | </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 | |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 95 | </project> |