blob: 29176fb0ffaac933ef3f0a9df804cc19fb8b3c71 [file] [log] [blame]
alshabibf0e7e702015-05-30 18:22:36 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connord6a135a2017-08-03 22:46:05 -07003 ~ Copyright 2015-present Open Networking Foundation
alshabibf0e7e702015-05-30 18:22:36 -07004 ~
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 Hartda66a012018-05-02 17:30:05 -070015 ~ limitations under the License.
alshabibf0e7e702015-05-30 18:22:36 -070016 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Ray Milkey17481412015-12-09 09:16:26 -080019 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Ray Milkey17481412015-12-09 09:16:26 -080020 <modelVersion>4.0.0</modelVersion>
alshabibf0e7e702015-05-30 18:22:36 -070021
alshabib36a4d732016-06-01 16:03:59 -070022 <groupId>org.opencord</groupId>
23 <artifactId>olt</artifactId>
Carmelo Casconeca931162019-07-15 18:22:24 -070024 <version>4.0.0-SNAPSHOT</version>
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080025 <packaging>pom</packaging>
alshabib36a4d732016-06-01 16:03:59 -070026
27 <properties>
28 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Carmelo Casconeca931162019-07-15 18:22:24 -070029 <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>
alshabib36a4d732016-06-01 16:03:59 -070032 </properties>
alshabibf0e7e702015-05-30 18:22:36 -070033
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080034 <modules>
35 <module>api</module>
36 <module>app</module>
37 </modules>
alshabibf0e7e702015-05-30 18:22:36 -070038
alshabib36a4d732016-06-01 16:03:59 -070039 <dependencies>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-api</artifactId>
43 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070044 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070045 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080046
alshabib36a4d732016-06-01 16:03:59 -070047 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onlab-misc</artifactId>
50 <version>${onos.version}</version>
Carmelo Casconeca931162019-07-15 18:22:24 -070051 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070052 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080053
alshabib36a4d732016-06-01 16:03:59 -070054 <dependency>
Carmelo Casconeca931162019-07-15 18:22:24 -070055 <groupId>com.google.guava</groupId>
56 <artifactId>guava</artifactId>
57 <version>22.0</version>
58 <scope>provided</scope>
alshabib36a4d732016-06-01 16:03:59 -070059 </dependency>
Charles Chan63713ad2016-12-14 16:15:12 -080060
alshabib36a4d732016-06-01 16:03:59 -070061 </dependencies>
Charles Chan63713ad2016-12-14 16:15:12 -080062
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 Casconeca931162019-07-15 18:22:24 -070089
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>
alshabibf0e7e702015-05-30 18:22:36 -0700117</project>