blob: 5a007c2f58afdecad093fb1a2d06433d4bada529 [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
Ari Saha89831742015-06-26 10:31:48 -070022 <parent>
23 <groupId>org.onosproject</groupId>
Charles Chanfd32a972016-12-14 16:14:50 -080024 <artifactId>onos-dependencies</artifactId>
Matteo Scandolo7929f1b2019-06-28 08:38:16 -070025 <version>1.13.9</version>
Hyunsun Moon55e89a22016-10-27 11:23:19 -070026 <relativePath></relativePath>
Ari Saha89831742015-06-26 10:31:48 -070027 </parent>
28
alshabib6d527452016-06-01 18:00:47 -070029 <groupId>org.opencord</groupId>
30 <artifactId>aaa</artifactId>
Jenkinsfb1aa762019-06-28 20:55:06 +000031 <version>1.9.0</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070032 <packaging>pom</packaging>
Ari Saha89831742015-06-26 10:31:48 -070033
alshabib6d527452016-06-01 18:00:47 -070034 <properties>
Matteo Scandolocf847b82019-04-26 15:00:00 -070035 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Matteo Scandolo7929f1b2019-06-28 08:38:16 -070036 <onos.version>1.13.9</onos.version>
alshabib6d527452016-06-01 18:00:47 -070037 </properties>
38
Matteo Scandolocf847b82019-04-26 15:00:00 -070039 <modules>
40 <module>app</module>
41 <module>api</module>
42 </modules>
43
Ari Saha89831742015-06-26 10:31:48 -070044 <dependencies>
45 <dependency>
Ari Saha89831742015-06-26 10:31:48 -070046 <groupId>org.onosproject</groupId>
Ari Saha89831742015-06-26 10:31:48 -070047 <artifactId>onos-api</artifactId>
alshabib6d527452016-06-01 18:00:47 -070048 <version>${onos.version}</version>
Ari Saha89831742015-06-26 10:31:48 -070049 </dependency>
50
Ari Saha89831742015-06-26 10:31:48 -070051 <dependency>
52 <groupId>org.onosproject</groupId>
Ray Milkeyea366452015-09-30 10:56:43 -070053 <artifactId>onos-api</artifactId>
alshabib6d527452016-06-01 18:00:47 -070054 <version>${onos.version}</version>
Ray Milkeyea366452015-09-30 10:56:43 -070055 <classifier>tests</classifier>
56 <scope>test</scope>
57 </dependency>
Qianqian Hu61a6a402016-02-16 15:18:05 +080058
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-cli</artifactId>
alshabib6d527452016-06-01 18:00:47 -070062 <version>${onos.version}</version>
Qianqian Hu61a6a402016-02-16 15:18:05 +080063 </dependency>
64
65 <dependency>
alshabib6d527452016-06-01 18:00:47 -070066 <groupId>org.onosproject</groupId>
67 <artifactId>onlab-junit</artifactId>
68 <version>${onos.version}</version>
69 </dependency>
alshabib3c4d3762016-09-27 14:25:28 -070070
Jonathan Hart4731dd92018-05-02 17:30:05 -070071 <dependency>
72 <groupId>org.apache.karaf.shell</groupId>
73 <artifactId>org.apache.karaf.shell.console</artifactId>
74 </dependency>
75
76 <dependency>
77 <groupId>com.google.guava</groupId>
78 <artifactId>guava</artifactId>
79 <version>22.0</version>
80 </dependency>
81
Ari Saha89831742015-06-26 10:31:48 -070082 </dependencies>
83
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010084 <repositories>
85 <repository>
86 <id>central</id>
87 <name>Central Repository</name>
88 <url>http://repo.maven.apache.org/maven2</url>
89 <layout>default</layout>
90 <snapshots>
91 <enabled>false</enabled>
92 </snapshots>
93 <releases>
94 <enabled>true</enabled>
95 <updatePolicy>always</updatePolicy>
96 <checksumPolicy>fail</checksumPolicy>
97 </releases>
98 </repository>
99
100 <repository>
101 <id>snapshots</id>
102 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
103 <snapshots>
104 <enabled>true</enabled>
105 <updatePolicy>always</updatePolicy>
106 <checksumPolicy>fail</checksumPolicy>
107 </snapshots>
108 </repository>
109 </repositories>
Ari Saha89831742015-06-26 10:31:48 -0700110</project>