blob: 79e2ecf99bf40e2a051b62e2ea5ed08eac1162b8 [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>
Ilayda Ozdemir90a93622021-02-25 09:40:58 +000034 <sadis.api.version>5.3.0-SNAPSHOT</sadis.api.version>
35 <olt.api.version>4.4.0-SNAPSHOT</olt.api.version>
alshabib36a4d732016-06-01 16:03:59 -070036 </properties>
alshabibf0e7e702015-05-30 18:22:36 -070037
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080038 <modules>
39 <module>api</module>
Andrea Campanella37f07e42021-02-16 11:24:39 +010040 <module>impl</module>
Ilayda Ozdemir90a93622021-02-25 09:40:58 +000041 <module>web</module>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080042 <module>app</module>
43 </modules>
alshabibf0e7e702015-05-30 18:22:36 -070044
alshabib36a4d732016-06-01 16:03:59 -070045 <dependencies>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-api</artifactId>
49 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070050 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070051 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080052
alshabib36a4d732016-06-01 16:03:59 -070053 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onlab-misc</artifactId>
56 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070057 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070058 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080059
alshabib36a4d732016-06-01 16:03:59 -070060 </dependencies>
Charles Chan63713ad2016-12-14 16:15:12 -080061
Andrea Campanellacbbb7952019-11-25 06:38:41 +000062 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-checkstyle-plugin</artifactId>
67 <configuration>
68 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
69 </configuration>
70 </plugin>
Andrey Pozolotindb77b0e2020-08-14 17:28:27 +020071 <!-- SpotBugs Static Analysis -->
72 <plugin>
73 <groupId>com.github.spotbugs</groupId>
74 <artifactId>spotbugs-maven-plugin</artifactId>
75 <version>4.0.4</version>
76 <configuration>
77 <effort>Max</effort>
78 <threshold>Low</threshold>
79 <failOnError>false</failOnError>
80 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
81 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
82 <plugins>
83 <plugin>
84 <groupId>com.h3xstream.findsecbugs</groupId>
85 <artifactId>findsecbugs-plugin</artifactId>
86 <version>1.10.1</version>
87 </plugin>
88 </plugins>
89 </configuration>
90 </plugin>
Andrea Campanellacbbb7952019-11-25 06:38:41 +000091 </plugins>
92 </build>
93
Charles Chan63713ad2016-12-14 16:15:12 -080094 <repositories>
95 <repository>
96 <id>central</id>
97 <name>Central Repository</name>
Daniele Moroa185bb52020-01-15 11:10:42 -080098 <url>https://repo.maven.apache.org/maven2</url>
Charles Chan63713ad2016-12-14 16:15:12 -080099 <layout>default</layout>
100 <snapshots>
101 <enabled>false</enabled>
102 </snapshots>
103 <releases>
104 <enabled>true</enabled>
105 <updatePolicy>always</updatePolicy>
106 <checksumPolicy>fail</checksumPolicy>
107 </releases>
108 </repository>
109
110 <repository>
111 <id>snapshots</id>
112 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
113 <snapshots>
114 <enabled>true</enabled>
115 <updatePolicy>always</updatePolicy>
116 <checksumPolicy>fail</checksumPolicy>
117 </snapshots>
118 </repository>
119 </repositories>
Carmelo Casconeca931162019-07-15 18:22:24 -0700120
Carmelo Casconeca931162019-07-15 18:22:24 -0700121 <distributionManagement>
122 <snapshotRepository>
123 <id>ossrh</id>
124 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
125 </snapshotRepository>
126 </distributionManagement>
alshabibf0e7e702015-05-30 18:22:36 -0700127</project>