Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 1 | <?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> |
Daniele Moro | ad7057d | 2020-01-15 10:54:37 -0800 | [diff] [blame^] | 30 | <version>1.0.0-SNAPSHOT</version> |
Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 31 | <packaging>pom</packaging> |
| 32 | |
| 33 | <description>BNG Control app</description> |
| 34 | <url>http://opencord.org</url> |
| 35 | |
| 36 | <properties> |
Daniele Moro | ad7057d | 2020-01-15 10:54:37 -0800 | [diff] [blame^] | 37 | <sadis.api.version>4.0.1</sadis.api.version> |
| 38 | <olt.api.version>4.0.0</olt.api.version> |
Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 39 | </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 Moro | ad7057d | 2020-01-15 10:54:37 -0800 | [diff] [blame^] | 50 | <url>https://repo.maven.apache.org/maven2</url> |
Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 51 | <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 Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 61 | <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> |