blob: b266b6a6faf23b30855c24b64a379c2e1722628a [file] [log] [blame]
Ari Saha89831742015-06-26 10:31:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor4e33be22017-08-03 22:45:46 -07003 ~ Copyright 2015-present Open Networking Foundation
Ari Saha89831742015-06-26 10:31:48 -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
alshabib5f979512016-06-21 13:14:01 +020015 ~ limitations under the License.
Ari Saha89831742015-06-26 10:31:48 -070016 -->
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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
alshabib6d527452016-06-01 18:00:47 -070022 <groupId>org.opencord</groupId>
23 <artifactId>aaa</artifactId>
Carmelo Cascone58b53292019-09-30 12:35:31 -070024 <version>2.0.0-SNAPSHOT</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070025 <packaging>pom</packaging>
Ari Saha89831742015-06-26 10:31:48 -070026
alshabib6d527452016-06-01 18:00:47 -070027 <properties>
Matteo Scandolocf847b82019-04-26 15:00:00 -070028 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Carmelo Cascone58b53292019-09-30 12:35:31 -070029 <onos.version>2.2.0</onos.version>
alshabib6d527452016-06-01 18:00:47 -070030 </properties>
31
Matteo Scandolocf847b82019-04-26 15:00:00 -070032 <modules>
33 <module>app</module>
34 <module>api</module>
35 </modules>
36
Carmelo Cascone58b53292019-09-30 12:35:31 -070037 <dependencies>
38 <dependency>
39 <groupId>com.google.guava</groupId>
40 <artifactId>guava</artifactId>
41 <version>22.0</version>
42 <scope>provided</scope>
43 </dependency>
Ari Saha89831742015-06-26 10:31:48 -070044
Carmelo Cascone58b53292019-09-30 12:35:31 -070045 <dependency>
46 <groupId>org.apache.commons</groupId>
47 <artifactId>commons-lang3</artifactId>
48 <version>3.7</version>
49 <scope>provided</scope>
50 </dependency>
51 </dependencies>
Qianqian Hu61a6a402016-02-16 15:18:05 +080052
Carmelo Cascone58b53292019-09-30 12:35:31 -070053 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-bundle-plugin</artifactId>
58 <version>4.1.0</version>
59 <extensions>true</extensions>
60 <inherited>true</inherited>
61 </plugin>
Qianqian Hu61a6a402016-02-16 15:18:05 +080062
Carmelo Cascone58b53292019-09-30 12:35:31 -070063 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-compiler-plugin</artifactId>
66 <version>3.8.0</version>
67 <configuration>
68 <release>11</release>
69 </configuration>
70 <inherited>true</inherited>
71 </plugin>
72 </plugins>
73 </build>
Ari Saha89831742015-06-26 10:31:48 -070074
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010075 <repositories>
76 <repository>
77 <id>central</id>
78 <name>Central Repository</name>
79 <url>http://repo.maven.apache.org/maven2</url>
80 <layout>default</layout>
81 <snapshots>
82 <enabled>false</enabled>
83 </snapshots>
84 <releases>
85 <enabled>true</enabled>
86 <updatePolicy>always</updatePolicy>
87 <checksumPolicy>fail</checksumPolicy>
88 </releases>
89 </repository>
90
91 <repository>
92 <id>snapshots</id>
93 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
94 <snapshots>
95 <enabled>true</enabled>
96 <updatePolicy>always</updatePolicy>
97 <checksumPolicy>fail</checksumPolicy>
98 </snapshots>
99 </repository>
100 </repositories>
Carmelo Cascone58b53292019-09-30 12:35:31 -0700101 <distributionManagement>
102 <snapshotRepository>
103 <id>ossrh</id>
104 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
105 </snapshotRepository>
106 </distributionManagement>
Ari Saha89831742015-06-26 10:31:48 -0700107</project>