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 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 22 | <groupId>org.opencord</groupId> |
| 23 | <artifactId>olt</artifactId> |
Carmelo Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame^] | 24 | <version>4.0.0-SNAPSHOT</version> |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 25 | <packaging>pom</packaging> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 26 | |
| 27 | <properties> |
| 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Carmelo Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame^] | 29 | <onos.version>2.2.0</onos.version> |
| 30 | <karaf.version>4.2.6</karaf.version> |
| 31 | <sadis.api.version>4.0.0-SNAPSHOT</sadis.api.version> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 32 | </properties> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 33 | |
Srikanth Vavilapalli | 2e68491 | 2016-01-16 19:21:59 -0800 | [diff] [blame] | 34 | <modules> |
| 35 | <module>api</module> |
| 36 | <module>app</module> |
| 37 | </modules> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 38 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.onosproject</groupId> |
| 42 | <artifactId>onos-api</artifactId> |
| 43 | <version>${onos.version}</version> |
Carmelo Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame^] | 44 | <scope>provided</scope> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 45 | </dependency> |
Charles Chan | 63713ad | 2016-12-14 16:15:12 -0800 | [diff] [blame] | 46 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 47 | <dependency> |
| 48 | <groupId>org.onosproject</groupId> |
| 49 | <artifactId>onlab-misc</artifactId> |
| 50 | <version>${onos.version}</version> |
Carmelo Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame^] | 51 | <scope>provided</scope> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 52 | </dependency> |
Charles Chan | 63713ad | 2016-12-14 16:15:12 -0800 | [diff] [blame] | 53 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 54 | <dependency> |
Carmelo Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame^] | 55 | <groupId>com.google.guava</groupId> |
| 56 | <artifactId>guava</artifactId> |
| 57 | <version>22.0</version> |
| 58 | <scope>provided</scope> |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 59 | </dependency> |
Charles Chan | 63713ad | 2016-12-14 16:15:12 -0800 | [diff] [blame] | 60 | |
alshabib | 36a4d73 | 2016-06-01 16:03:59 -0700 | [diff] [blame] | 61 | </dependencies> |
Charles Chan | 63713ad | 2016-12-14 16:15:12 -0800 | [diff] [blame] | 62 | |
| 63 | <repositories> |
| 64 | <repository> |
| 65 | <id>central</id> |
| 66 | <name>Central Repository</name> |
| 67 | <url>http://repo.maven.apache.org/maven2</url> |
| 68 | <layout>default</layout> |
| 69 | <snapshots> |
| 70 | <enabled>false</enabled> |
| 71 | </snapshots> |
| 72 | <releases> |
| 73 | <enabled>true</enabled> |
| 74 | <updatePolicy>always</updatePolicy> |
| 75 | <checksumPolicy>fail</checksumPolicy> |
| 76 | </releases> |
| 77 | </repository> |
| 78 | |
| 79 | <repository> |
| 80 | <id>snapshots</id> |
| 81 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 82 | <snapshots> |
| 83 | <enabled>true</enabled> |
| 84 | <updatePolicy>always</updatePolicy> |
| 85 | <checksumPolicy>fail</checksumPolicy> |
| 86 | </snapshots> |
| 87 | </repository> |
| 88 | </repositories> |
Carmelo Cascone | ca93116 | 2019-07-15 18:22:24 -0700 | [diff] [blame^] | 89 | |
| 90 | <build> |
| 91 | <plugins> |
| 92 | <plugin> |
| 93 | <groupId>org.apache.felix</groupId> |
| 94 | <artifactId>maven-bundle-plugin</artifactId> |
| 95 | <version>4.1.0</version> |
| 96 | <extensions>true</extensions> |
| 97 | <inherited>true</inherited> |
| 98 | </plugin> |
| 99 | |
| 100 | <plugin> |
| 101 | <groupId>org.apache.maven.plugins</groupId> |
| 102 | <artifactId>maven-compiler-plugin</artifactId> |
| 103 | <version>3.8.0</version> |
| 104 | <configuration> |
| 105 | <release>11</release> |
| 106 | </configuration> |
| 107 | <inherited>true</inherited> |
| 108 | </plugin> |
| 109 | </plugins> |
| 110 | </build> |
| 111 | <distributionManagement> |
| 112 | <snapshotRepository> |
| 113 | <id>ossrh</id> |
| 114 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 115 | </snapshotRepository> |
| 116 | </distributionManagement> |
alshabib | f0e7e70 | 2015-05-30 18:22:36 -0700 | [diff] [blame] | 117 | </project> |