blob: 5af46d7fef9bd945dd8b75733647c9600bade642 [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>
Kim Kempf3ef821a2017-09-28 22:39:15 -070027 <aaa.version>1.4.0</aaa.version>
28 <config.version>1.3.1</config.version>
29 <dhcpl2relay.version>1.2.0</dhcpl2relay.version>
30 <igmpproxy.version>1.1.1</igmpproxy.version>
31 <mcast.version>1.3.1</mcast.version>
32 <olt.version>1.3.1</olt.version>
33 <sadis.version>1.1.2</sadis.version>
David K. Bainbridgeb6f72c12017-08-22 13:22:23 -070034
David K. Bainbridgeb6f72c12017-08-22 13:22:23 -070035 </properties>
36
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-dependency-plugin</artifactId>
42 <version>3.0.1</version>
43 <configuration>
44 <artifactItems>
45 <artifactItem>
46 <groupId>org.opencord</groupId>
47 <artifactId>cord-config</artifactId>
48 <version>${config.version}</version>
49 <type>oar</type>
50 <overWrite>true</overWrite>
51 </artifactItem>
52 <artifactItem>
53 <groupId>org.opencord</groupId>
David K. Bainbridgeb6f72c12017-08-22 13:22:23 -070054 <artifactId>mcast</artifactId>
55 <version>${mcast.version}</version>
56 <type>oar</type>
57 <overWrite>true</overWrite>
58 </artifactItem>
59 <artifactItem>
60 <groupId>org.opencord</groupId>
61 <artifactId>olt-app</artifactId>
62 <version>${olt.version}</version>
63 <type>oar</type>
64 <overWrite>true</overWrite>
65 </artifactItem>
66 <artifactItem>
67 <groupId>org.opencord</groupId>
68 <artifactId>sadis-app</artifactId>
69 <version>${sadis.version}</version>
70 <type>oar</type>
71 <overWrite>true</overWrite>
72 </artifactItem>
73 <artifactItem>
74 <groupId>org.opencord</groupId>
David K. Bainbridgeb6f72c12017-08-22 13:22:23 -070075 <artifactId>aaa</artifactId>
76 <version>${aaa.version}</version>
77 <type>oar</type>
78 <overWrite>true</overWrite>
79 </artifactItem>
80 <artifactItem>
81 <groupId>org.opencord</groupId>
82 <artifactId>onos-app-igmpproxy</artifactId>
83 <version>${igmpproxy.version}</version>
84 <type>oar</type>
85 <overWrite>true</overWrite>
86 </artifactItem>
87 <artifactItem>
88 <groupId>org.opencord</groupId>
89 <artifactId>dhcpl2relay</artifactId>
90 <version>${dhcpl2relay.version}</version>
91 <type>oar</type>
92 <overWrite>true</overWrite>
93 </artifactItem>
94 </artifactItems>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
99
100 <repositories>
101 <repository>
102 <id>central</id>
103 <name>Central Repository</name>
104 <url>http://repo.maven.apache.org/maven2</url>
105 <layout>default</layout>
106 <snapshots>
107 <enabled>false</enabled>
108 </snapshots>
109 <releases>
110 <enabled>true</enabled>
111 <updatePolicy>always</updatePolicy>
112 <checksumPolicy>fail</checksumPolicy>
113 </releases>
114 </repository>
115
116 <repository>
117 <id>snapshots</id>
118 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
119 <snapshots>
120 <enabled>true</enabled>
121 <updatePolicy>always</updatePolicy>
122 <checksumPolicy>fail</checksumPolicy>
123 </snapshots>
124 </repository>
125 </repositories>
126
127</project>