alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | d6a135a | 2017-08-03 22:46:05 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [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 |
Jonathan Hart | da66a01 | 2018-05-02 17:30:05 -0700 | [diff] [blame] | 15 | ~ limitations under the License. |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Ray Milkey | 1748141 | 2015-12-09 09:16:26 -0800 | [diff] [blame] | 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Ray Milkey | 1748141 | 2015-12-09 09:16:26 -0800 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 21 | |
Carmelo Cascone | 95ff512 | 2019-11-14 14:19:13 -0800 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-dependencies</artifactId> |
Andrea Campanella | 7b597e0 | 2021-03-30 11:44:58 +0200 | [diff] [blame^] | 25 | <version>2.2.8</version> |
Carmelo Cascone | 95ff512 | 2019-11-14 14:19:13 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 28 | <groupId>org.opencord</groupId> |
| 29 | <artifactId>olt</artifactId> |
Jenkins | 89b5d23 | 2020-12-09 23:28:55 +0000 | [diff] [blame] | 30 | <version>4.4.0-SNAPSHOT</version> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 31 | <packaging>pom</packaging> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 32 | |
| 33 | <properties> |
Andrea Campanella | 7b597e0 | 2021-03-30 11:44:58 +0200 | [diff] [blame^] | 34 | <sadis.api.version>5.3.0</sadis.api.version> |
Ilayda Ozdemir | 90a9362 | 2021-02-25 09:40:58 +0000 | [diff] [blame] | 35 | <olt.api.version>4.4.0-SNAPSHOT</olt.api.version> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 36 | </properties> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 37 | |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 38 | <modules> |
| 39 | <module>api</module> |
Andrea Campanella | 37f07e4 | 2021-02-16 11:24:39 +0100 | [diff] [blame] | 40 | <module>impl</module> |
Ilayda Ozdemir | 90a9362 | 2021-02-25 09:40:58 +0000 | [diff] [blame] | 41 | <module>web</module> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 42 | <module>app</module> |
| 43 | </modules> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 44 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-api</artifactId> |
| 49 | <version>${onos.version}</version> |
Carmelo Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame] | 50 | <scope>provided</scope> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 51 | </dependency> |
Charles Chan | 63713ad | 2016-12-14 16:15:12 -0800 | [diff] [blame] | 52 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>org.onosproject</groupId> |
| 55 | <artifactId>onlab-misc</artifactId> |
| 56 | <version>${onos.version}</version> |
Carmelo Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame] | 57 | <scope>provided</scope> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 58 | </dependency> |
Charles Chan | 63713ad | 2016-12-14 16:15:12 -0800 | [diff] [blame] | 59 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 60 | </dependencies> |
Charles Chan | 63713ad | 2016-12-14 16:15:12 -0800 | [diff] [blame] | 61 | |
Andrea Campanella | cbbb795 | 2019-11-25 06:38:41 +0000 | [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> |
Andrey Pozolotin | db77b0e | 2020-08-14 17:28:27 +0200 | [diff] [blame] | 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> |
Andrea Campanella | cbbb795 | 2019-11-25 06:38:41 +0000 | [diff] [blame] | 91 | </plugins> |
| 92 | </build> |
| 93 | |
Charles Chan | 63713ad | 2016-12-14 16:15:12 -0800 | [diff] [blame] | 94 | <repositories> |
| 95 | <repository> |
| 96 | <id>central</id> |
| 97 | <name>Central Repository</name> |
Daniele Moro | a185bb5 | 2020-01-15 11:10:42 -0800 | [diff] [blame] | 98 | <url>https://repo.maven.apache.org/maven2</url> |
Charles Chan | 63713ad | 2016-12-14 16:15:12 -0800 | [diff] [blame] | 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 | |
| 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 Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame] | 120 | |
Carmelo Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame] | 121 | <distributionManagement> |
| 122 | <snapshotRepository> |
| 123 | <id>ossrh</id> |
| 124 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 125 | </snapshotRepository> |
| 126 | </distributionManagement> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 127 | </project> |