blob: 8cbb595516d3515107d930312c2355698d194ba3 [file] [log] [blame]
Matt Jeanneretc7b437c2019-05-13 12:33:08 -04001<?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>
Andrea Campanella6b90a012021-04-29 08:48:54 +020027 <olt.version>4.4.0</olt.version>
28 <sadis.version>5.3.0</sadis.version>
29 <aaa.version>2.3.0</aaa.version>
30 <dhcpl2relay.version>2.4.0</dhcpl2relay.version>
31 <kafka.version>2.6.0</kafka.version>
32 <igmpproxy.version>2.2.0</igmpproxy.version>
33 <mcast.version>2.3.2</mcast.version>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040034 </properties>
35
36 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-dependency-plugin</artifactId>
41 <version>3.0.1</version>
42 <configuration>
43 <artifactItems>
44 <artifactItem>
45 <groupId>org.opencord</groupId>
46 <artifactId>olt-app</artifactId>
47 <version>${olt.version}</version>
48 <type>oar</type>
49 <overWrite>true</overWrite>
50 </artifactItem>
51 <artifactItem>
52 <groupId>org.opencord</groupId>
53 <artifactId>sadis-app</artifactId>
54 <version>${sadis.version}</version>
55 <type>oar</type>
56 <overWrite>true</overWrite>
57 </artifactItem>
58 <artifactItem>
59 <groupId>org.opencord</groupId>
Matt Jeanneret38995f22019-08-02 14:22:40 -040060 <artifactId>aaa-app</artifactId>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040061 <version>${aaa.version}</version>
62 <type>oar</type>
63 <overWrite>true</overWrite>
64 </artifactItem>
65 <artifactItem>
66 <groupId>org.opencord</groupId>
Matt Jeanneret38995f22019-08-02 14:22:40 -040067 <artifactId>dhcpl2relay-app</artifactId>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040068 <version>${dhcpl2relay.version}</version>
69 <type>oar</type>
70 <overWrite>true</overWrite>
71 </artifactItem>
Matt Jeanneret38995f22019-08-02 14:22:40 -040072 <artifactItem>
73 <groupId>org.opencord</groupId>
74 <artifactId>kafka</artifactId>
75 <version>${kafka.version}</version>
76 <type>oar</type>
77 <overWrite>true</overWrite>
78 </artifactItem>
Matteo Scandolo87cd82e2020-03-16 18:09:00 -070079 <artifactItem>
80 <groupId>org.opencord</groupId>
Matteo Scandolo9f412be2020-03-25 17:12:12 -070081 <artifactId>onos-app-igmpproxy-app</artifactId>
Matteo Scandolo87cd82e2020-03-16 18:09:00 -070082 <version>${igmpproxy.version}</version>
83 <type>oar</type>
84 <overWrite>true</overWrite>
85 </artifactItem>
86 <artifactItem>
87 <groupId>org.opencord</groupId>
Matteo Scandolo9f412be2020-03-25 17:12:12 -070088 <artifactId>mcast-app</artifactId>
Matteo Scandolo87cd82e2020-03-16 18:09:00 -070089 <version>${mcast.version}</version>
90 <type>oar</type>
91 <overWrite>true</overWrite>
92 </artifactItem>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040093 </artifactItems>
94 </configuration>
95 </plugin>
96 </plugins>
97 </build>
98
99 <repositories>
100 <repository>
101 <id>central</id>
102 <name>Central Repository</name>
Matt Jeanneretbe994fd2020-01-22 07:34:55 -0500103 <url>https://repo.maven.apache.org/maven2</url>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -0400104 <layout>default</layout>
105 <snapshots>
106 <enabled>false</enabled>
107 </snapshots>
108 <releases>
109 <enabled>true</enabled>
110 <updatePolicy>always</updatePolicy>
111 <checksumPolicy>fail</checksumPolicy>
112 </releases>
113 </repository>
114
115 <repository>
116 <id>snapshots</id>
117 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
118 <snapshots>
119 <enabled>true</enabled>
120 <updatePolicy>always</updatePolicy>
121 <checksumPolicy>fail</checksumPolicy>
122 </snapshots>
123 </repository>
124 </repositories>
125
126</project>