blob: 61910a7390c3d1182c6ddfac80b74dac42f50394 [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 Campanellaa76bda32020-07-07 10:26:55 +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>
Jenkinsc0551372020-09-28 16:58:09 +000030 <version>4.2.1</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>
Andrey Pozolotindb77b0e2020-08-14 17:28:27 +020068 <!-- SpotBugs Static Analysis -->
69 <plugin>
70 <groupId>com.github.spotbugs</groupId>
71 <artifactId>spotbugs-maven-plugin</artifactId>
72 <version>4.0.4</version>
73 <configuration>
74 <effort>Max</effort>
75 <threshold>Low</threshold>
76 <failOnError>false</failOnError>
77 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
78 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
79 <plugins>
80 <plugin>
81 <groupId>com.h3xstream.findsecbugs</groupId>
82 <artifactId>findsecbugs-plugin</artifactId>
83 <version>1.10.1</version>
84 </plugin>
85 </plugins>
86 </configuration>
87 </plugin>
Andrea Campanellacbbb7952019-11-25 06:38:41 +000088 </plugins>
89 </build>
90
Charles Chan63713ad2016-12-14 16:15:12 -080091 <repositories>
92 <repository>
93 <id>central</id>
94 <name>Central Repository</name>
Daniele Moroa185bb52020-01-15 11:10:42 -080095 <url>https://repo.maven.apache.org/maven2</url>
Charles Chan63713ad2016-12-14 16:15:12 -080096 <layout>default</layout>
97 <snapshots>
98 <enabled>false</enabled>
99 </snapshots>
100 <releases>
101 <enabled>true</enabled>
102 <updatePolicy>always</updatePolicy>
103 <checksumPolicy>fail</checksumPolicy>
104 </releases>
105 </repository>
106
107 <repository>
108 <id>snapshots</id>
109 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
110 <snapshots>
111 <enabled>true</enabled>
112 <updatePolicy>always</updatePolicy>
113 <checksumPolicy>fail</checksumPolicy>
114 </snapshots>
115 </repository>
116 </repositories>
Carmelo Casconeca931162019-07-15 18:22:24 -0700117
Carmelo Casconeca931162019-07-15 18:22:24 -0700118 <distributionManagement>
119 <snapshotRepository>
120 <id>ossrh</id>
121 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
122 </snapshotRepository>
123 </distributionManagement>
alshabibf0e7e702015-05-30 18:22:36 -0700124</project>