blob: f5e604f8fef289c0c4839c40b561a528585c3902 [file] [log] [blame]
Daniele Moro94660a02019-12-02 12:02:07 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2019-present Open Networking Foundation
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"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
25 <version>2.2.1-b3</version>
26 </parent>
27
28 <groupId>org.opencord</groupId>
29 <artifactId>bng</artifactId>
30 <version>1.0-SNAPSHOT</version>
31 <packaging>pom</packaging>
32
33 <description>BNG Control app</description>
34 <url>http://opencord.org</url>
35
36 <properties>
37<!-- TODO: Update Sadis to 4.0.1-SNAPSHOT-->
38 <sadis.api.version>4.0.0-SNAPSHOT</sadis.api.version>
39 <olt.api.version>4.0.0-SNAPSHOT</olt.api.version>
40 </properties>
41
42 <modules>
43 <module>app</module>
44 <module>api</module>
45 </modules>
46
47 <repositories>
48 <repository>
49 <id>central</id>
50 <name>Central Repository</name>
51 <url>http://repo.maven.apache.org/maven2</url>
52 <layout>default</layout>
53 <snapshots>
54 <enabled>false</enabled>
55 </snapshots>
56 <releases>
57 <enabled>true</enabled>
58 <updatePolicy>always</updatePolicy>
59 <checksumPolicy>fail</checksumPolicy>
60 </releases>
61 </repository>
62
63 <repository>
64 <id>snapshots</id>
65 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
66 <snapshots>
67 <enabled>true</enabled>
68 <updatePolicy>always</updatePolicy>
69 <checksumPolicy>fail</checksumPolicy>
70 </snapshots>
71 </repository>
72 </repositories>
73
74</project>