blob: 51e4cb2b9e8926e340cf29c9dc3d8c880915d6bf [file] [log] [blame]
David K. Bainbridge56da9572017-08-17 09:56:50 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present Open Networking Foundation
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
15 ~ limitations under the License.
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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <groupId>fake</groupId>
23 <artifactId>fake</artifactId>
24 <version>fake</version>
25
26 <properties>
Jonathan Hartf0147872018-01-29 14:25:22 -080027 <aaa.version>1.3.0</aaa.version>
Jonathan Hartf0147872018-01-29 14:25:22 -080028 <dhcpl2relay.version>1.1.0</dhcpl2relay.version>
Jonathan Hartf0147872018-01-29 14:25:22 -080029 <olt.version>1.3.0</olt.version>
30 <sadis.version>1.1.0</sadis.version>
David K. Bainbridge56da9572017-08-17 09:56:50 -070031
32 <!-- TODO onos-build-conf.version can be dropped when onos.version > 1.10.3 -->
33 <onos-build-conf.version>1.10.3-onf</onos-build-conf.version>
34 </properties>
35
36 <dependencies>
37 <dependency>
38 <groupId>org.opencord</groupId>
39 <artifactId>aaa</artifactId>
Marc De Leenheer0b1ed3c2017-09-05 17:38:37 -070040 <version>${aaa.version}</version>
41 <type>oar</type>
42 </dependency>
43
44 <dependency>
David K. Bainbridge56da9572017-08-17 09:56:50 -070045 <groupId>org.opencord</groupId>
46 <artifactId>dhcpl2relay</artifactId>
47 <version>${dhcpl2relay.version}</version>
48 <type>oar</type>
49 </dependency>
50
51 <dependency>
52 <groupId>org.opencord</groupId>
David K. Bainbridge56da9572017-08-17 09:56:50 -070053 <artifactId>olt-app</artifactId>
54 <version>${olt.version}</version>
55 <type>oar</type>
56 </dependency>
57
58 <dependency>
59 <groupId>org.opencord</groupId>
60 <artifactId>sadis-app</artifactId>
61 <version>${sadis.version}</version>
62 <type>oar</type>
63 </dependency>
64
David K. Bainbridge56da9572017-08-17 09:56:50 -070065 </dependencies>
66
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-dependency-plugin</artifactId>
72 <version>3.0.1</version>
73 </plugin>
74 </plugins>
75 </build>
76
77 <repositories>
78 <repository>
79 <id>central</id>
80 <name>Central Repository</name>
Daniele Moro3b009e52020-01-15 11:22:57 -080081 <url>https://repo.maven.apache.org/maven2</url>
David K. Bainbridge56da9572017-08-17 09:56:50 -070082 <layout>default</layout>
83 <snapshots>
84 <enabled>false</enabled>
85 </snapshots>
86 <releases>
87 <enabled>true</enabled>
88 <updatePolicy>always</updatePolicy>
89 <checksumPolicy>fail</checksumPolicy>
90 </releases>
91 </repository>
92
93 <repository>
94 <id>snapshots</id>
95 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
96 <snapshots>
97 <enabled>true</enabled>
98 <updatePolicy>always</updatePolicy>
99 <checksumPolicy>fail</checksumPolicy>
100 </snapshots>
101 </repository>
102 </repositories>
103
104</project>