Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 1 | <?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 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 | 92bbfd3 | 2021-12-27 12:03:14 +0000 | [diff] [blame^] | 32 | <version>1.2.1-SNAPSHOT</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 | 92bbfd3 | 2021-12-27 12:03:14 +0000 | [diff] [blame^] | 41 | <maclearner.api.version>1.2.1-SNAPSHOT</maclearner.api.version> |
Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 42 | </properties> |
| 43 | |
| 44 | <modules> |
| 45 | <module>api</module> |
| 46 | <module>app</module> |
| 47 | </modules> |
| 48 | |
| 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
| 52 | <artifactId>onos-api</artifactId> |
| 53 | <version>${onos.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.apache.karaf.shell</groupId> |
| 57 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 58 | </dependency> |
| 59 | </dependencies> |
| 60 | |
Andrey Pozolotin | 2c307d4 | 2020-08-24 15:01:38 +0200 | [diff] [blame] | 61 | <build> |
| 62 | <plugins> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 66 | <configuration> |
| 67 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | <!-- SpotBugs Static Analysis --> |
| 71 | <plugin> |
| 72 | <groupId>com.github.spotbugs</groupId> |
| 73 | <artifactId>spotbugs-maven-plugin</artifactId> |
| 74 | <version>4.0.4</version> |
| 75 | <configuration> |
| 76 | <effort>Max</effort> |
| 77 | <threshold>Low</threshold> |
| 78 | <failOnError>false</failOnError> |
| 79 | <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile> |
| 80 | <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile> |
| 81 | <plugins> |
| 82 | <plugin> |
| 83 | <groupId>com.h3xstream.findsecbugs</groupId> |
| 84 | <artifactId>findsecbugs-plugin</artifactId> |
| 85 | <version>1.10.1</version> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </build> |
| 92 | |
Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 93 | <repositories> |
| 94 | <repository> |
| 95 | <id>central</id> |
| 96 | <name>Central Repository</name> |
| 97 | <url>https://repo.maven.apache.org/maven2</url> |
| 98 | <layout>default</layout> |
| 99 | <snapshots> |
| 100 | <enabled>false</enabled> |
| 101 | </snapshots> |
| 102 | <releases> |
| 103 | <enabled>true</enabled> |
| 104 | <updatePolicy>always</updatePolicy> |
| 105 | <checksumPolicy>fail</checksumPolicy> |
| 106 | </releases> |
| 107 | </repository> |
| 108 | <repository> |
| 109 | <id>snapshots</id> |
| 110 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 111 | <snapshots> |
| 112 | <enabled>true</enabled> |
| 113 | <updatePolicy>always</updatePolicy> |
| 114 | <checksumPolicy>fail</checksumPolicy> |
| 115 | </snapshots> |
| 116 | </repository> |
| 117 | </repositories> |
Andrea Campanella | 6358883 | 2021-06-03 11:08:49 +0200 | [diff] [blame] | 118 | <pluginRepositories> |
| 119 | <pluginRepository> |
| 120 | <id>sonatype-snapshots</id> |
| 121 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 122 | <snapshots> |
| 123 | <enabled>true</enabled> |
| 124 | <updatePolicy>always</updatePolicy> |
| 125 | <checksumPolicy>fail</checksumPolicy> |
| 126 | </snapshots> |
| 127 | </pluginRepository> |
| 128 | </pluginRepositories> |
Tunahan Sezen | 03e5527 | 2020-04-18 09:18:53 +0000 | [diff] [blame] | 129 | |
| 130 | </project> |