blob: 395ac44a839c20ececd90d6a86a840aa17d901d8 [file] [log] [blame]
alshabibf0e7e702015-05-30 18:22:36 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connord6a135a2017-08-03 22:46:05 -07003 ~ Copyright 2015-present Open Networking Foundation
alshabibf0e7e702015-05-30 18:22:36 -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
Jonathan Hartda66a012018-05-02 17:30:05 -070015 ~ limitations under the License.
alshabibf0e7e702015-05-30 18:22:36 -070016 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Ray Milkey17481412015-12-09 09:16:26 -080019 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Ray Milkey17481412015-12-09 09:16:26 -080020 <modelVersion>4.0.0</modelVersion>
alshabibf0e7e702015-05-30 18:22:36 -070021
Carmelo Cascone95ff5122019-11-14 14:19:13 -080022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
Andrea Campanellaf9a93db2020-07-06 17:39:34 +020025 <version>2.2.3</version>
Carmelo Cascone95ff5122019-11-14 14:19:13 -080026 </parent>
27
alshabib36a4d732016-06-01 16:03:59 -070028 <groupId>org.opencord</groupId>
29 <artifactId>olt</artifactId>
Jenkins3ccd2e72020-07-06 16:10:50 +000030 <version>4.1.2-SNAPSHOT</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080031 <packaging>pom</packaging>
alshabib36a4d732016-06-01 16:03:59 -070032
33 <properties>
Andrea Campanella09487952020-07-01 10:10:59 +020034 <sadis.api.version>5.1.0</sadis.api.version>
alshabib36a4d732016-06-01 16:03:59 -070035 </properties>
alshabibf0e7e702015-05-30 18:22:36 -070036
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080037 <modules>
38 <module>api</module>
39 <module>app</module>
40 </modules>
alshabibf0e7e702015-05-30 18:22:36 -070041
alshabib36a4d732016-06-01 16:03:59 -070042 <dependencies>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-api</artifactId>
46 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070047 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070048 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080049
alshabib36a4d732016-06-01 16:03:59 -070050 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onlab-misc</artifactId>
53 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070054 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070055 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080056
alshabib36a4d732016-06-01 16:03:59 -070057 </dependencies>
Charles Chan63713ad2016-12-14 16:15:12 -080058
Andrea Campanellacbbb7952019-11-25 06:38:41 +000059 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-checkstyle-plugin</artifactId>
64 <configuration>
65 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70
Charles Chan63713ad2016-12-14 16:15:12 -080071 <repositories>
72 <repository>
73 <id>central</id>
74 <name>Central Repository</name>
Daniele Moroa185bb52020-01-15 11:10:42 -080075 <url>https://repo.maven.apache.org/maven2</url>
Charles Chan63713ad2016-12-14 16:15:12 -080076 <layout>default</layout>
77 <snapshots>
78 <enabled>false</enabled>
79 </snapshots>
80 <releases>
81 <enabled>true</enabled>
82 <updatePolicy>always</updatePolicy>
83 <checksumPolicy>fail</checksumPolicy>
84 </releases>
85 </repository>
86
87 <repository>
88 <id>snapshots</id>
89 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
90 <snapshots>
91 <enabled>true</enabled>
92 <updatePolicy>always</updatePolicy>
93 <checksumPolicy>fail</checksumPolicy>
94 </snapshots>
95 </repository>
96 </repositories>
Carmelo Casconeca931162019-07-15 18:22:24 -070097
Carmelo Casconeca931162019-07-15 18:22:24 -070098 <distributionManagement>
99 <snapshotRepository>
100 <id>ossrh</id>
101 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
102 </snapshotRepository>
103 </distributionManagement>
alshabibf0e7e702015-05-30 18:22:36 -0700104</project>