Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Joey Armstrong | 53fcac2 | 2023-01-11 13:25:01 -0500 | [diff] [blame] | 3 | ~ Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 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 Campanella | fd4ba46 | 2021-12-17 14:38:46 +0100 | [diff] [blame] | 25 | <version>2.5.5</version> |
Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 26 | <relativePath></relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <groupId>org.opencord</groupId> |
| 30 | <artifactId>maclearner</artifactId> |
| 31 | <packaging>pom</packaging> |
Jenkins | 4aca9e6 | 2024-01-26 19:32:39 +0000 | [diff] [blame^] | 32 | <version>1.2.3</version> |
Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 33 | |
| 34 | <properties> |
| 35 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 36 | <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> |
Jenkins | 4aca9e6 | 2024-01-26 19:32:39 +0000 | [diff] [blame^] | 41 | <maclearner.api.version>1.2.3</maclearner.api.version> |
Mahir Gunyel | e87330f | 2024-01-24 13:04:54 -0800 | [diff] [blame] | 42 | <sadis.api.version>5.12.2</sadis.api.version> |
Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 43 | </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 Pozolotin | 2c307d4 | 2020-08-24 15:01:38 +0200 | [diff] [blame] | 62 | <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> |
Joey Armstrong | 726185c | 2023-06-13 14:58:04 -0400 | [diff] [blame] | 75 | <version>4.7.3.4</version> |
Andrey Pozolotin | 2c307d4 | 2020-08-24 15:01:38 +0200 | [diff] [blame] | 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> |
Joey Armstrong | 08bd13f | 2023-06-20 15:07:47 -0400 | [diff] [blame] | 86 | <version>1.12.0</version> |
Andrey Pozolotin | 2c307d4 | 2020-08-24 15:01:38 +0200 | [diff] [blame] | 87 | </plugin> |
| 88 | </plugins> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | </plugins> |
| 92 | </build> |
| 93 | |
Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 94 | <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 Campanella | 6358883 | 2021-06-03 11:08:49 +0200 | [diff] [blame] | 119 | <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 Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 130 | |
| 131 | </project> |