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