blob: 53afdac89631a7c1b78f1975938c408c97b71aae [file] [log] [blame]
David K. Bainbridgeb6f72c12017-08-22 13:22:23 -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 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-dependency-plugin</artifactId>
46 <version>3.0.1</version>
47 <configuration>
48 <artifactItems>
49 <artifactItem>
50 <groupId>org.opencord</groupId>
51 <artifactId>cord-config</artifactId>
52 <version>${config.version}</version>
53 <type>oar</type>
54 <overWrite>true</overWrite>
55 </artifactItem>
56 <artifactItem>
57 <groupId>org.opencord</groupId>
58 <artifactId>igmp</artifactId>
59 <version>${igmp.version}</version>
60 <type>oar</type>
61 <overWrite>true</overWrite>
62 </artifactItem>
63 <artifactItem>
64 <groupId>org.opencord</groupId>
65 <artifactId>mcast</artifactId>
66 <version>${mcast.version}</version>
67 <type>oar</type>
68 <overWrite>true</overWrite>
69 </artifactItem>
70 <artifactItem>
71 <groupId>org.opencord</groupId>
72 <artifactId>olt-app</artifactId>
73 <version>${olt.version}</version>
74 <type>oar</type>
75 <overWrite>true</overWrite>
76 </artifactItem>
77 <artifactItem>
78 <groupId>org.opencord</groupId>
79 <artifactId>sadis-app</artifactId>
80 <version>${sadis.version}</version>
81 <type>oar</type>
82 <overWrite>true</overWrite>
83 </artifactItem>
84 <artifactItem>
85 <groupId>org.opencord</groupId>
86 <artifactId>vtn</artifactId>
87 <version>${vtn.version}</version>
88 <type>oar</type>
89 <overWrite>true</overWrite>
90 </artifactItem>
91 <artifactItem>
92 <groupId>org.opencord</groupId>
93 <artifactId>aaa</artifactId>
94 <version>${aaa.version}</version>
95 <type>oar</type>
96 <overWrite>true</overWrite>
97 </artifactItem>
98 <artifactItem>
99 <groupId>org.opencord</groupId>
100 <artifactId>onos-app-igmpproxy</artifactId>
101 <version>${igmpproxy.version}</version>
102 <type>oar</type>
103 <overWrite>true</overWrite>
104 </artifactItem>
105 <artifactItem>
106 <groupId>org.opencord</groupId>
107 <artifactId>dhcpl2relay</artifactId>
108 <version>${dhcpl2relay.version}</version>
109 <type>oar</type>
110 <overWrite>true</overWrite>
111 </artifactItem>
112 </artifactItems>
113 </configuration>
114 </plugin>
115 </plugins>
116 </build>
117
118 <repositories>
119 <repository>
120 <id>central</id>
121 <name>Central Repository</name>
122 <url>http://repo.maven.apache.org/maven2</url>
123 <layout>default</layout>
124 <snapshots>
125 <enabled>false</enabled>
126 </snapshots>
127 <releases>
128 <enabled>true</enabled>
129 <updatePolicy>always</updatePolicy>
130 <checksumPolicy>fail</checksumPolicy>
131 </releases>
132 </repository>
133
134 <repository>
135 <id>snapshots</id>
136 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
137 <snapshots>
138 <enabled>true</enabled>
139 <updatePolicy>always</updatePolicy>
140 <checksumPolicy>fail</checksumPolicy>
141 </snapshots>
142 </repository>
143 </repositories>
144
145</project>