David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 180c109 | 2017-08-03 22:46:14 -0700 | [diff] [blame] | 3 | ~ Copyright 2017-present Open Networking Foundation |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -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 | 275ee25 | 2018-05-02 17:30:05 -0700 | [diff] [blame] | 15 | ~ limitations under the License. |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 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"> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-dependencies</artifactId> |
Andrea Campanella | e6c1c80 | 2020-02-19 18:17:17 +0100 | [diff] [blame^] | 25 | <version>1.13.10</version> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 26 | <relativePath></relativePath> |
| 27 | </parent> |
| 28 | |
Amit Ghosh | a65d703 | 2017-07-31 22:39:59 +0100 | [diff] [blame] | 29 | <groupId>org.opencord</groupId> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 30 | <artifactId>sadis</artifactId> |
pier | 635a481 | 2019-10-19 10:15:47 +0200 | [diff] [blame] | 31 | <version>3.1.1-SNAPSHOT</version> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 32 | <packaging>pom</packaging> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 33 | |
| 34 | <properties> |
| 35 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Andrea Campanella | e6c1c80 | 2020-02-19 18:17:17 +0100 | [diff] [blame^] | 36 | <onos.version>1.13.10</onos.version> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 37 | <onos.app.name>org.opencord.sadis</onos.app.name> |
| 38 | <onos.app.category>Utility</onos.app.category> |
| 39 | <onos.app.title>Subscriber and Access Device Information Service</onos.app.title> |
| 40 | <onos.app.origin>Open Networking Laboratory</onos.app.origin> |
| 41 | <onos.app.url>http://opencord.org</onos.app.url> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 42 | </properties> |
| 43 | |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 44 | <modules> |
| 45 | <module>api</module> |
| 46 | <module>app</module> |
| 47 | </modules> |
| 48 | |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
| 52 | <artifactId>onos-api</artifactId> |
| 53 | <version>${onos.version}</version> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 58 | <artifactId>onlab-misc</artifactId> |
| 59 | <version>${onos.version}</version> |
| 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>org.onosproject</groupId> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 64 | <artifactId>onlab-osgi</artifactId> |
| 65 | <version>${onos.version}</version> |
| 66 | </dependency> |
| 67 | |
| 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 70 | <artifactId>onos-core-common</artifactId> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 71 | <version>${onos.version}</version> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 72 | </dependency> |
| 73 | |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 74 | </dependencies> |
| 75 | |
pier | 952fc1a | 2020-01-31 08:53:41 +0100 | [diff] [blame] | 76 | <build> |
| 77 | <plugins> |
| 78 | <plugin> |
| 79 | <groupId>org.apache.maven.plugins</groupId> |
| 80 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 81 | <configuration> |
| 82 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
| 87 | |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 88 | <repositories> |
| 89 | <repository> |
| 90 | <id>central</id> |
| 91 | <name>Central Repository</name> |
pier | 952fc1a | 2020-01-31 08:53:41 +0100 | [diff] [blame] | 92 | <url>https://repo.maven.apache.org/maven2</url> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 93 | <layout>default</layout> |
| 94 | <snapshots> |
| 95 | <enabled>false</enabled> |
| 96 | </snapshots> |
| 97 | <releases> |
| 98 | <enabled>true</enabled> |
| 99 | <updatePolicy>always</updatePolicy> |
| 100 | <checksumPolicy>fail</checksumPolicy> |
| 101 | </releases> |
| 102 | </repository> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 103 | |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 104 | <repository> |
| 105 | <id>snapshots</id> |
| 106 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 107 | <snapshots> |
| 108 | <enabled>true</enabled> |
| 109 | <updatePolicy>always</updatePolicy> |
| 110 | <checksumPolicy>fail</checksumPolicy> |
| 111 | </snapshots> |
| 112 | </repository> |
| 113 | </repositories> |
Matteo Scandolo | e876068 | 2019-10-31 10:03:13 -0700 | [diff] [blame] | 114 | |
| 115 | <distributionManagement> |
| 116 | <snapshotRepository> |
| 117 | <id>ossrh</id> |
| 118 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 119 | </snapshotRepository> |
| 120 | </distributionManagement> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 121 | </project> |