blob: b6e105533699c57147ebb52c582004a908fb83f1 [file] [log] [blame]
alshabib10f7fe82016-04-28 15:52:22 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connorf7cf45a2017-08-03 22:45:48 -07003 ~ Copyright 2015-present Open Networking Foundation
alshabib10f7fe82016-04-28 15:52:22 -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
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>
Charles Chan38f70292016-12-14 16:14:57 -080024 <artifactId>onos-dependencies</artifactId>
Carmelo Cascone1c7e6be2019-11-14 14:22:39 -080025 <version>2.2.1-b2</version>
alshabib10f7fe82016-04-28 15:52:22 -070026 </parent>
27
Brian O'Connordd1ebd32016-06-24 17:00:42 -070028 <groupId>org.opencord</groupId>
Jonathan Hart92cc9652016-06-07 11:23:03 -070029 <artifactId>cord-config</artifactId>
Carmelo Cascone1c7e6be2019-11-14 14:22:39 -080030 <version>2.0.0-SNAPSHOT</version>
alshabib10f7fe82016-04-28 15:52:22 -070031 <packaging>bundle</packaging>
32
Jonathan Hartc6681fb2016-05-23 20:50:49 -070033 <description>CORD configuration meta application</description>
alshabib10f7fe82016-04-28 15:52:22 -070034
35 <properties>
alshabibf2b1e0d2016-06-02 17:12:54 -070036 <onos.app.name>org.opencord.config</onos.app.name>
Jonathan Hart92cc9652016-06-07 11:23:03 -070037 <onos.app.title>CORD Configuration Meta Application</onos.app.title>
alshabib10f7fe82016-04-28 15:52:22 -070038 <onos.app.category>Utility</onos.app.category>
39 <onos.app.url>http://opencord.org</onos.app.url>
40 </properties>
41
42 <dependencies>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-api</artifactId>
alshabibf2b1e0d2016-06-02 17:12:54 -070046 <version>${onos.version}</version>
Carmelo Cascone1c7e6be2019-11-14 14:22:39 -080047 <scope>provided</scope>
alshabib10f7fe82016-04-28 15:52:22 -070048 </dependency>
49 </dependencies>
50
alshabibf2b1e0d2016-06-02 17:12:54 -070051 <build>
52 <plugins>
53 <plugin>
alshabibf2b1e0d2016-06-02 17:12:54 -070054 <groupId>org.onosproject</groupId>
55 <artifactId>onos-maven-plugin</artifactId>
alshabibf2b1e0d2016-06-02 17:12:54 -070056 </plugin>
57 </plugins>
58 </build>
Jonathan Hartbcd4e292017-08-15 16:35:57 -070059
60 <repositories>
61 <repository>
62 <id>central</id>
63 <name>Central Repository</name>
64 <url>http://repo.maven.apache.org/maven2</url>
65 <layout>default</layout>
66 <snapshots>
67 <enabled>false</enabled>
68 </snapshots>
69 <releases>
70 <enabled>true</enabled>
71 <updatePolicy>always</updatePolicy>
72 <checksumPolicy>fail</checksumPolicy>
73 </releases>
74 </repository>
Jonathan Hartbcd4e292017-08-15 16:35:57 -070075 <repository>
76 <id>snapshots</id>
77 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
78 <snapshots>
79 <enabled>true</enabled>
80 <updatePolicy>always</updatePolicy>
81 <checksumPolicy>fail</checksumPolicy>
82 </snapshots>
83 </repository>
84 </repositories>
alshabib10f7fe82016-04-28 15:52:22 -070085</project>