blob: 87462a35f236247ad52313f13491ba04c47fb936 [file] [log] [blame]
Tunahan Sezen03e55272020-04-18 09:18:53 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-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.2</version>
26 <relativePath></relativePath>
27 </parent>
28
29 <groupId>org.opencord</groupId>
30 <artifactId>maclearner</artifactId>
31 <packaging>pom</packaging>
32 <version>1.0.0-SNAPSHOT</version>
33
34 <properties>
35 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36 <onos.version>2.2.2</onos.version>
37 <onos.app.name>org.opencord.maclearner</onos.app.name>
38 <onos.app.category>Utility</onos.app.category>
39 <onos.app.title>Mac Address by Connected Port Information Service</onos.app.title>
40 <onos.app.origin>ON.Lab</onos.app.origin>
41 <onos.app.url>http://onosproject.org</onos.app.url>
42 </properties>
43
44 <modules>
45 <module>api</module>
46 <module>app</module>
47 </modules>
48
49 <dependencies>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-api</artifactId>
53 <version>${onos.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.karaf.shell</groupId>
57 <artifactId>org.apache.karaf.shell.console</artifactId>
58 </dependency>
59 </dependencies>
60
61 <repositories>
62 <repository>
63 <id>central</id>
64 <name>Central Repository</name>
65 <url>https://repo.maven.apache.org/maven2</url>
66 <layout>default</layout>
67 <snapshots>
68 <enabled>false</enabled>
69 </snapshots>
70 <releases>
71 <enabled>true</enabled>
72 <updatePolicy>always</updatePolicy>
73 <checksumPolicy>fail</checksumPolicy>
74 </releases>
75 </repository>
76 <repository>
77 <id>snapshots</id>
78 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
79 <snapshots>
80 <enabled>true</enabled>
81 <updatePolicy>always</updatePolicy>
82 <checksumPolicy>fail</checksumPolicy>
83 </snapshots>
84 </repository>
85 </repositories>
86
87</project>