blob: 25c9b99436739575202d99e15ec7e3b90af8cfb0 [file] [log] [blame]
alshabibf0e7e702015-05-30 18:22:36 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Matteo Scandoloaa2adde2021-09-13 12:45:32 -07003 ~ Copyright 2021 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 -->
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070017<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Ray Milkey17481412015-12-09 09:16:26 -080018 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 -080019 <modelVersion>4.0.0</modelVersion>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080020 <modules>
21 <module>api</module>
Andrea Campanella37f07e42021-02-16 11:24:39 +010022 <module>impl</module>
Ilayda Ozdemir90a93622021-02-25 09:40:58 +000023 <module>web</module>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080024 <module>app</module>
25 </modules>
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070026 <parent>
27 <groupId>org.onosproject</groupId>
28 <artifactId>onos-dependencies</artifactId>
Matteo Scandolofd0388f2021-12-16 16:48:58 -080029 <version>2.5.5</version>
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070030 </parent>
31 <groupId>org.opencord</groupId>
32 <artifactId>olt</artifactId>
Jenkinsb12c2d72021-12-27 17:01:41 +000033 <version>5.1.0-SNAPSHOT</version>
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070034 <packaging>pom</packaging>
35 <description>OLT Application</description>
36 <url>http://onosproject.org</url>
37 <properties>
yasin sapli0823c932022-01-26 11:26:09 +000038 <sadis.api.version>5.6.0-SNAPSHOT</sadis.api.version>
Jenkinsb12c2d72021-12-27 17:01:41 +000039 <olt.api.version>5.1.0-SNAPSHOT</olt.api.version>
Gustavo Silva29fb20e2022-05-26 09:59:54 -030040 <olt.impl.version>5.1.0-SNAPSHOT</olt.impl.version>
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070041 </properties>
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>
alshabib36a4d732016-06-01 16:03:59 -070056 </dependencies>
Andrea Campanellacbbb7952019-11-25 06:38:41 +000057 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-checkstyle-plugin</artifactId>
62 <configuration>
63 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
64 </configuration>
65 </plugin>
Andrey Pozolotindb77b0e2020-08-14 17:28:27 +020066 <!-- SpotBugs Static Analysis -->
67 <plugin>
68 <groupId>com.github.spotbugs</groupId>
69 <artifactId>spotbugs-maven-plugin</artifactId>
70 <version>4.0.4</version>
71 <configuration>
72 <effort>Max</effort>
73 <threshold>Low</threshold>
74 <failOnError>false</failOnError>
75 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
76 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
77 <plugins>
78 <plugin>
79 <groupId>com.h3xstream.findsecbugs</groupId>
80 <artifactId>findsecbugs-plugin</artifactId>
81 <version>1.10.1</version>
82 </plugin>
83 </plugins>
84 </configuration>
85 </plugin>
Andrea Campanellacbbb7952019-11-25 06:38:41 +000086 </plugins>
87 </build>
Charles Chan63713ad2016-12-14 16:15:12 -080088 <repositories>
89 <repository>
90 <id>central</id>
91 <name>Central Repository</name>
Daniele Moroa185bb52020-01-15 11:10:42 -080092 <url>https://repo.maven.apache.org/maven2</url>
Charles Chan63713ad2016-12-14 16:15:12 -080093 <layout>default</layout>
94 <snapshots>
95 <enabled>false</enabled>
96 </snapshots>
97 <releases>
98 <enabled>true</enabled>
99 <updatePolicy>always</updatePolicy>
100 <checksumPolicy>fail</checksumPolicy>
101 </releases>
102 </repository>
103
104 <repository>
105 <id>snapshots</id>
106 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
107 <snapshots>
108 <enabled>true</enabled>
109 <updatePolicy>always</updatePolicy>
110 <checksumPolicy>fail</checksumPolicy>
111 </snapshots>
112 </repository>
113 </repositories>
Andrea Campanellabfb47af2021-06-03 11:09:45 +0200114 <pluginRepositories>
115 <pluginRepository>
116 <id>sonatype-snapshots</id>
117 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
118 <snapshots>
119 <enabled>true</enabled>
120 <updatePolicy>always</updatePolicy>
121 <checksumPolicy>fail</checksumPolicy>
122 </snapshots>
123 </pluginRepository>
124 </pluginRepositories>
Carmelo Casconeca931162019-07-15 18:22:24 -0700125 <distributionManagement>
126 <snapshotRepository>
127 <id>ossrh</id>
128 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
129 </snapshotRepository>
130 </distributionManagement>
alshabibf0e7e702015-05-30 18:22:36 -0700131</project>