Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 4e33be2 | 2017-08-03 22:45:46 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -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 |
alshabib | 5f97951 | 2016-06-21 13:14:01 +0200 | [diff] [blame] | 15 | ~ limitations under the License. |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 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/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
Carmelo Cascone | a306120 | 2019-11-14 14:19:13 -0800 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-dependencies</artifactId> |
Carmelo Cascone | b3e6130 | 2019-11-15 21:34:03 -0800 | [diff] [blame] | 25 | <version>2.2.1-b3</version> |
Carmelo Cascone | a306120 | 2019-11-14 14:19:13 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 28 | <groupId>org.opencord</groupId> |
| 29 | <artifactId>aaa</artifactId> |
Jenkins | c5440c0 | 2020-02-12 09:16:24 +0000 | [diff] [blame] | 30 | <version>2.0.2-SNAPSHOT</version> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 31 | <packaging>pom</packaging> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 32 | |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 33 | <modules> |
| 34 | <module>app</module> |
| 35 | <module>api</module> |
| 36 | </modules> |
| 37 | |
Amit Ghosh | c9ac1e5 | 2017-07-28 12:31:18 +0100 | [diff] [blame] | 38 | <repositories> |
| 39 | <repository> |
| 40 | <id>central</id> |
| 41 | <name>Central Repository</name> |
Daniele Moro | 3d84823 | 2020-01-15 11:06:59 -0800 | [diff] [blame] | 42 | <url>https://repo.maven.apache.org/maven2</url> |
Amit Ghosh | c9ac1e5 | 2017-07-28 12:31:18 +0100 | [diff] [blame] | 43 | <layout>default</layout> |
| 44 | <snapshots> |
| 45 | <enabled>false</enabled> |
| 46 | </snapshots> |
| 47 | <releases> |
| 48 | <enabled>true</enabled> |
| 49 | <updatePolicy>always</updatePolicy> |
| 50 | <checksumPolicy>fail</checksumPolicy> |
| 51 | </releases> |
| 52 | </repository> |
Amit Ghosh | c9ac1e5 | 2017-07-28 12:31:18 +0100 | [diff] [blame] | 53 | <repository> |
| 54 | <id>snapshots</id> |
| 55 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 56 | <snapshots> |
| 57 | <enabled>true</enabled> |
| 58 | <updatePolicy>always</updatePolicy> |
| 59 | <checksumPolicy>fail</checksumPolicy> |
| 60 | </snapshots> |
| 61 | </repository> |
| 62 | </repositories> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 63 | <distributionManagement> |
| 64 | <snapshotRepository> |
| 65 | <id>ossrh</id> |
| 66 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 67 | </snapshotRepository> |
| 68 | </distributionManagement> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 69 | </project> |