blob: 96310b0e319f503814370f765cb575501883ad3f [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>
Jenkins967893d2021-12-27 17:01:18 +000033 <version>5.0.0</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>
Matteo Scandolofd0388f2021-12-16 16:48:58 -080038 <sadis.api.version>5.5.1</sadis.api.version>
Jenkins967893d2021-12-27 17:01:18 +000039 <olt.api.version>5.0.0</olt.api.version>
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070040 </properties>
alshabib36a4d732016-06-01 16:03:59 -070041 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-api</artifactId>
45 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070046 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070047 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080048
alshabib36a4d732016-06-01 16:03:59 -070049 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onlab-misc</artifactId>
52 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070053 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070054 </dependency>
alshabib36a4d732016-06-01 16:03:59 -070055 </dependencies>
Andrea Campanellacbbb7952019-11-25 06:38:41 +000056 <build>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-checkstyle-plugin</artifactId>
61 <configuration>
62 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
63 </configuration>
64 </plugin>
Andrey Pozolotindb77b0e2020-08-14 17:28:27 +020065 <!-- SpotBugs Static Analysis -->
66 <plugin>
67 <groupId>com.github.spotbugs</groupId>
68 <artifactId>spotbugs-maven-plugin</artifactId>
69 <version>4.0.4</version>
70 <configuration>
71 <effort>Max</effort>
72 <threshold>Low</threshold>
73 <failOnError>false</failOnError>
74 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
75 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
76 <plugins>
77 <plugin>
78 <groupId>com.h3xstream.findsecbugs</groupId>
79 <artifactId>findsecbugs-plugin</artifactId>
80 <version>1.10.1</version>
81 </plugin>
82 </plugins>
83 </configuration>
84 </plugin>
Andrea Campanellacbbb7952019-11-25 06:38:41 +000085 </plugins>
86 </build>
Charles Chan63713ad2016-12-14 16:15:12 -080087 <repositories>
88 <repository>
89 <id>central</id>
90 <name>Central Repository</name>
Daniele Moroa185bb52020-01-15 11:10:42 -080091 <url>https://repo.maven.apache.org/maven2</url>
Charles Chan63713ad2016-12-14 16:15:12 -080092 <layout>default</layout>
93 <snapshots>
94 <enabled>false</enabled>
95 </snapshots>
96 <releases>
97 <enabled>true</enabled>
98 <updatePolicy>always</updatePolicy>
99 <checksumPolicy>fail</checksumPolicy>
100 </releases>
101 </repository>
102
103 <repository>
104 <id>snapshots</id>
105 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
106 <snapshots>
107 <enabled>true</enabled>
108 <updatePolicy>always</updatePolicy>
109 <checksumPolicy>fail</checksumPolicy>
110 </snapshots>
111 </repository>
112 </repositories>
Andrea Campanellabfb47af2021-06-03 11:09:45 +0200113 <pluginRepositories>
114 <pluginRepository>
115 <id>sonatype-snapshots</id>
116 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
117 <snapshots>
118 <enabled>true</enabled>
119 <updatePolicy>always</updatePolicy>
120 <checksumPolicy>fail</checksumPolicy>
121 </snapshots>
122 </pluginRepository>
123 </pluginRepositories>
Carmelo Casconeca931162019-07-15 18:22:24 -0700124 <distributionManagement>
125 <snapshotRepository>
126 <id>ossrh</id>
127 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
128 </snapshotRepository>
129 </distributionManagement>
alshabibf0e7e702015-05-30 18:22:36 -0700130</project>