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