blob: deabb86dd53efee228cbee435712a1cf12a3dea4 [file] [log] [blame]
Ari Saha89831742015-06-26 10:31:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor4e33be22017-08-03 22:45:46 -07003 ~ Copyright 2015-present Open Networking Foundation
Ari Saha89831742015-06-26 10:31:48 -07004 ~
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
alshabib5f979512016-06-21 13:14:01 +020015 ~ limitations under the License.
Ari Saha89831742015-06-26 10:31:48 -070016 -->
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 Casconea3061202019-11-14 14:19:13 -080022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
Matteo Scandolobb51d7e2020-03-25 15:18:44 -070025 <version>2.2.2</version>
Carmelo Casconea3061202019-11-14 14:19:13 -080026 </parent>
27
alshabib6d527452016-06-01 18:00:47 -070028 <groupId>org.opencord</groupId>
29 <artifactId>aaa</artifactId>
Jenkinsc5407a92020-07-01 10:40:04 +000030 <version>2.1.0</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070031 <packaging>pom</packaging>
Ari Saha89831742015-06-26 10:31:48 -070032
Matteo Scandolocf847b82019-04-26 15:00:00 -070033 <modules>
34 <module>app</module>
35 <module>api</module>
36 </modules>
37
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010038 <repositories>
39 <repository>
40 <id>central</id>
41 <name>Central Repository</name>
Daniele Moro3d848232020-01-15 11:06:59 -080042 <url>https://repo.maven.apache.org/maven2</url>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010043 <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 Ghoshc9ac1e52017-07-28 12:31:18 +010053 <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 Cascone58b53292019-09-30 12:35:31 -070063 <distributionManagement>
64 <snapshotRepository>
65 <id>ossrh</id>
66 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
67 </snapshotRepository>
68 </distributionManagement>
Ari Saha89831742015-06-26 10:31:48 -070069</project>