blob: e7e689cbb848724f387a01f0acba8e1b78b5a50a [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>
Gustavo Silva5c492dd2021-02-12 10:21:11 -030025 <version>2.2.8-b3</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>
Jenkins89b5d232020-12-09 23:28:55 +000030 <version>4.4.0-SNAPSHOT</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080031 <packaging>pom</packaging>
alshabib36a4d732016-06-01 16:03:59 -070032
33 <properties>
Matteo Scandolo0bbc8252020-12-08 16:28:13 -080034 <sadis.api.version>5.2.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>
Andrea Campanella37f07e42021-02-16 11:24:39 +010039 <module>web</module>
40 <module>impl</module>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080041 <module>app</module>
42 </modules>
alshabibf0e7e702015-05-30 18:22:36 -070043
alshabib36a4d732016-06-01 16:03:59 -070044 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
48 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070049 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070050 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080051
alshabib36a4d732016-06-01 16:03:59 -070052 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onlab-misc</artifactId>
55 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070056 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070057 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080058
alshabib36a4d732016-06-01 16:03:59 -070059 </dependencies>
Charles Chan63713ad2016-12-14 16:15:12 -080060
Andrea Campanellacbbb7952019-11-25 06:38:41 +000061 <build>
62 <plugins>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-checkstyle-plugin</artifactId>
66 <configuration>
67 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
68 </configuration>
69 </plugin>
Andrey Pozolotindb77b0e2020-08-14 17:28:27 +020070 <!-- SpotBugs Static Analysis -->
71 <plugin>
72 <groupId>com.github.spotbugs</groupId>
73 <artifactId>spotbugs-maven-plugin</artifactId>
74 <version>4.0.4</version>
75 <configuration>
76 <effort>Max</effort>
77 <threshold>Low</threshold>
78 <failOnError>false</failOnError>
79 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
80 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
81 <plugins>
82 <plugin>
83 <groupId>com.h3xstream.findsecbugs</groupId>
84 <artifactId>findsecbugs-plugin</artifactId>
85 <version>1.10.1</version>
86 </plugin>
87 </plugins>
88 </configuration>
89 </plugin>
Andrea Campanellacbbb7952019-11-25 06:38:41 +000090 </plugins>
91 </build>
92
Charles Chan63713ad2016-12-14 16:15:12 -080093 <repositories>
94 <repository>
95 <id>central</id>
96 <name>Central Repository</name>
Daniele Moroa185bb52020-01-15 11:10:42 -080097 <url>https://repo.maven.apache.org/maven2</url>
Charles Chan63713ad2016-12-14 16:15:12 -080098 <layout>default</layout>
99 <snapshots>
100 <enabled>false</enabled>
101 </snapshots>
102 <releases>
103 <enabled>true</enabled>
104 <updatePolicy>always</updatePolicy>
105 <checksumPolicy>fail</checksumPolicy>
106 </releases>
107 </repository>
108
109 <repository>
110 <id>snapshots</id>
111 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
112 <snapshots>
113 <enabled>true</enabled>
114 <updatePolicy>always</updatePolicy>
115 <checksumPolicy>fail</checksumPolicy>
116 </snapshots>
117 </repository>
118 </repositories>
Carmelo Casconeca931162019-07-15 18:22:24 -0700119
Carmelo Casconeca931162019-07-15 18:22:24 -0700120 <distributionManagement>
121 <snapshotRepository>
122 <id>ossrh</id>
123 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
124 </snapshotRepository>
125 </distributionManagement>
alshabibf0e7e702015-05-30 18:22:36 -0700126</project>