blob: b2bc8e61f5f6c56fd010227560ae3cf66cebb182 [file] [log] [blame]
Tunahan Sezen03e55272020-04-18 09:18:53 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present Open Networking Foundation
4 ~
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
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
Andrea Campanellafd4ba462021-12-17 14:38:46 +010025 <version>2.5.5</version>
Tunahan Sezen03e55272020-04-18 09:18:53 +000026 <relativePath></relativePath>
27 </parent>
28
29 <groupId>org.opencord</groupId>
30 <artifactId>maclearner</artifactId>
31 <packaging>pom</packaging>
Jenkins92bbfd32021-12-27 12:03:14 +000032 <version>1.2.1-SNAPSHOT</version>
Tunahan Sezen03e55272020-04-18 09:18:53 +000033
34 <properties>
35 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Tunahan Sezen03e55272020-04-18 09:18:53 +000036 <onos.app.name>org.opencord.maclearner</onos.app.name>
37 <onos.app.category>Utility</onos.app.category>
38 <onos.app.title>Mac Address by Connected Port Information Service</onos.app.title>
39 <onos.app.origin>ON.Lab</onos.app.origin>
40 <onos.app.url>http://onosproject.org</onos.app.url>
Jenkins92bbfd32021-12-27 12:03:14 +000041 <maclearner.api.version>1.2.1-SNAPSHOT</maclearner.api.version>
Andrea Campanella6f6d9602022-06-30 13:47:08 +020042 <sadis.api.version>5.6.0</sadis.api.version>
Tunahan Sezen03e55272020-04-18 09:18:53 +000043 </properties>
44
45 <modules>
46 <module>api</module>
47 <module>app</module>
48 </modules>
49
50 <dependencies>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-api</artifactId>
54 <version>${onos.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.karaf.shell</groupId>
58 <artifactId>org.apache.karaf.shell.console</artifactId>
59 </dependency>
60 </dependencies>
61
Andrey Pozolotin2c307d42020-08-24 15:01:38 +020062 <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>
71 <!-- 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>
91 </plugins>
92 </build>
93
Tunahan Sezen03e55272020-04-18 09:18:53 +000094 <repositories>
95 <repository>
96 <id>central</id>
97 <name>Central Repository</name>
98 <url>https://repo.maven.apache.org/maven2</url>
99 <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 <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>
Andrea Campanella63588832021-06-03 11:08:49 +0200119 <pluginRepositories>
120 <pluginRepository>
121 <id>sonatype-snapshots</id>
122 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
123 <snapshots>
124 <enabled>true</enabled>
125 <updatePolicy>always</updatePolicy>
126 <checksumPolicy>fail</checksumPolicy>
127 </snapshots>
128 </pluginRepository>
129 </pluginRepositories>
Tunahan Sezen03e55272020-04-18 09:18:53 +0000130
131</project>