blob: ad179c420bcdb06713f4d26b3b2250183a0b575e [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>
27 <aaa.version>1.3.0-SNAPSHOT</aaa.version>
28 <config.version>1.3.0-SNAPSHOT</config.version>
29 <dhcpl2relay.version>1.1.0-SNAPSHOT</dhcpl2relay.version>
30 <igmp.version>1.3.0-SNAPSHOT</igmp.version>
31 <igmpproxy.version>1.1.0-SNAPSHOT</igmpproxy.version>
32 <mcast.version>1.3.0-SNAPSHOT</mcast.version>
33 <olt.version>1.3.0-SNAPSHOT</olt.version>
34 <sadis.version>1.1.0-SNAPSHOT</sadis.version>
35 <vtn.version>1.3.0-SNAPSHOT</vtn.version>
36
37 <!-- TODO onos-build-conf.version can be dropped when onos.version > 1.10.3 -->
38 <onos-build-conf.version>1.10.3-onf</onos-build-conf.version>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.opencord</groupId>
44 <artifactId>aaa</artifactId>
45 <version>${aaa.version}</version>
46 <type>oar</type>
47 </dependency>
48
49 <dependency>
50 <groupId>org.opencord</groupId>
51 <artifactId>cord-config</artifactId>
52 <version>${config.version}</version>
53 <type>oar</type>
54 </dependency>
55
56 <dependency>
57 <groupId>org.opencord</groupId>
58 <artifactId>dhcpl2relay</artifactId>
59 <version>${dhcpl2relay.version}</version>
60 <type>oar</type>
61 </dependency>
62
63 <dependency>
64 <groupId>org.opencord</groupId>
65 <artifactId>igmp</artifactId>
66 <version>${igmp.version}</version>
67 <type>oar</type>
68 </dependency>
69
70 <dependency>
71 <groupId>org.opencord</groupId>
72 <artifactId>onos-app-igmpproxy</artifactId>
73 <version>${igmpproxy.version}</version>
74 <type>oar</type>
75 </dependency>
76
77 <dependency>
78 <groupId>org.opencord</groupId>
79 <artifactId>mcast</artifactId>
80 <version>${mcast.version}</version>
81 <type>oar</type>
82 </dependency>
83
84 <dependency>
85 <groupId>org.opencord</groupId>
86 <artifactId>olt-app</artifactId>
87 <version>${olt.version}</version>
88 <type>oar</type>
89 </dependency>
90
91 <dependency>
92 <groupId>org.opencord</groupId>
93 <artifactId>sadis-app</artifactId>
94 <version>${sadis.version}</version>
95 <type>oar</type>
96 </dependency>
97
98 <dependency>
99 <groupId>org.opencord</groupId>
100 <artifactId>vtn</artifactId>
101 <version>${vtn.version}</version>
102 <type>oar</type>
103 </dependency>
104
105 </dependencies>
106
107 <build>
108 <plugins>
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-dependency-plugin</artifactId>
112 <version>3.0.1</version>
113 </plugin>
114 </plugins>
115 </build>
116
117 <repositories>
118 <repository>
119 <id>central</id>
120 <name>Central Repository</name>
121 <url>http://repo.maven.apache.org/maven2</url>
122 <layout>default</layout>
123 <snapshots>
124 <enabled>false</enabled>
125 </snapshots>
126 <releases>
127 <enabled>true</enabled>
128 <updatePolicy>always</updatePolicy>
129 <checksumPolicy>fail</checksumPolicy>
130 </releases>
131 </repository>
132
133 <repository>
134 <id>snapshots</id>
135 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
136 <snapshots>
137 <enabled>true</enabled>
138 <updatePolicy>always</updatePolicy>
139 <checksumPolicy>fail</checksumPolicy>
140 </snapshots>
141 </repository>
142 </repositories>
143
144</project>