blob: 2631163e971cc1ed2a3fe895fb718ca6a9731335 [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>
Carmelo Casconee386ff22020-02-21 14:20:30 -080025 <version>2.2.1</version>
Daniele Moro94660a02019-12-02 12:02:07 -080026 </parent>
27
28 <groupId>org.opencord</groupId>
29 <artifactId>bng</artifactId>
Jenkinsfc1219b2020-03-17 19:36:12 +000030 <version>1.1.2-SNAPSHOT</version>
Daniele Moro94660a02019-12-02 12:02:07 -080031 <packaging>pom</packaging>
32
33 <description>BNG Control app</description>
34 <url>http://opencord.org</url>
35
36 <properties>
Daniele Moroad7057d2020-01-15 10:54:37 -080037 <sadis.api.version>4.0.1</sadis.api.version>
38 <olt.api.version>4.0.0</olt.api.version>
Daniele Moro94660a02019-12-02 12:02:07 -080039 </properties>
40
41 <modules>
42 <module>app</module>
43 <module>api</module>
44 </modules>
45
46 <repositories>
47 <repository>
48 <id>central</id>
49 <name>Central Repository</name>
Daniele Moroad7057d2020-01-15 10:54:37 -080050 <url>https://repo.maven.apache.org/maven2</url>
Daniele Moro94660a02019-12-02 12:02:07 -080051 <layout>default</layout>
52 <snapshots>
53 <enabled>false</enabled>
54 </snapshots>
55 <releases>
56 <enabled>true</enabled>
57 <updatePolicy>always</updatePolicy>
58 <checksumPolicy>fail</checksumPolicy>
59 </releases>
60 </repository>
Daniele Moro94660a02019-12-02 12:02:07 -080061 <repository>
62 <id>snapshots</id>
63 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
64 <snapshots>
65 <enabled>true</enabled>
66 <updatePolicy>always</updatePolicy>
67 <checksumPolicy>fail</checksumPolicy>
68 </snapshots>
69 </repository>
70 </repositories>
71
72</project>