blob: cbbb1d072405bdd7ac5878ec9085d6d28d90999c [file] [log] [blame]
Matt Jeanneretc7b437c2019-05-13 12:33:08 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Joey Armstrong695ba5c2023-01-20 11:17:49 -05003 ~ Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors
Matt Jeanneretc7b437c2019-05-13 12:33:08 -04004 ~
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>
Gustavo Silva460edf02022-09-15 14:08:17 -030027 <olt.version>5.2.2</olt.version>
Andrea Campanellab7362602022-06-30 15:30:48 +020028 <sadis.version>5.6.0</sadis.version>
29 <aaa.version>2.6.0</aaa.version>
30 <dhcpl2relay.version>2.7.0</dhcpl2relay.version>
31 <kafka.version>2.9.0</kafka.version>
32 <igmpproxy.version>2.5.0</igmpproxy.version>
33 <mcast.version>2.6.0</mcast.version>
34 <maclearner.version>1.2.1</maclearner.version>
35 <pppoeagent.version>1.2.1</pppoeagent.version>
Andrea Campanella67f61572021-05-28 18:43:02 +020036 <segmentrouting.version>3.0.0</segmentrouting.version>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040037 </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>olt-app</artifactId>
50 <version>${olt.version}</version>
51 <type>oar</type>
52 <overWrite>true</overWrite>
53 </artifactItem>
54 <artifactItem>
55 <groupId>org.opencord</groupId>
56 <artifactId>sadis-app</artifactId>
57 <version>${sadis.version}</version>
58 <type>oar</type>
59 <overWrite>true</overWrite>
60 </artifactItem>
61 <artifactItem>
62 <groupId>org.opencord</groupId>
Matt Jeanneret38995f22019-08-02 14:22:40 -040063 <artifactId>aaa-app</artifactId>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040064 <version>${aaa.version}</version>
65 <type>oar</type>
66 <overWrite>true</overWrite>
67 </artifactItem>
68 <artifactItem>
69 <groupId>org.opencord</groupId>
Matt Jeanneret38995f22019-08-02 14:22:40 -040070 <artifactId>dhcpl2relay-app</artifactId>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040071 <version>${dhcpl2relay.version}</version>
72 <type>oar</type>
73 <overWrite>true</overWrite>
74 </artifactItem>
Matt Jeanneret38995f22019-08-02 14:22:40 -040075 <artifactItem>
76 <groupId>org.opencord</groupId>
77 <artifactId>kafka</artifactId>
78 <version>${kafka.version}</version>
79 <type>oar</type>
80 <overWrite>true</overWrite>
81 </artifactItem>
Matteo Scandolo87cd82e2020-03-16 18:09:00 -070082 <artifactItem>
83 <groupId>org.opencord</groupId>
Matteo Scandolo9f412be2020-03-25 17:12:12 -070084 <artifactId>onos-app-igmpproxy-app</artifactId>
Matteo Scandolo87cd82e2020-03-16 18:09:00 -070085 <version>${igmpproxy.version}</version>
86 <type>oar</type>
87 <overWrite>true</overWrite>
88 </artifactItem>
89 <artifactItem>
90 <groupId>org.opencord</groupId>
Matteo Scandolo9f412be2020-03-25 17:12:12 -070091 <artifactId>mcast-app</artifactId>
Matteo Scandolo87cd82e2020-03-16 18:09:00 -070092 <version>${mcast.version}</version>
93 <type>oar</type>
94 <overWrite>true</overWrite>
95 </artifactItem>
Andrea Campanella67f61572021-05-28 18:43:02 +020096 <artifactItem>
Andrea Campanella090ffd62022-02-08 13:41:53 +010097 <groupId>org.opencord</groupId>
98 <artifactId>maclearner-app</artifactId>
99 <version>${maclearner.version}</version>
100 <type>oar</type>
101 <overWrite>true</overWrite>
102 </artifactItem>
103 <artifactItem>
Andrea Campanellac9d60ac2022-05-26 14:06:44 +0200104 <groupId>org.opencord</groupId>
105 <artifactId>pppoeagent-app</artifactId>
106 <version>${pppoeagent.version}</version>
107 <type>oar</type>
108 <overWrite>true</overWrite>
109 </artifactItem>
110 <artifactItem>
Andrea Campanella67f61572021-05-28 18:43:02 +0200111 <groupId>org.onosproject</groupId>
112 <artifactId>segmentrouting-app</artifactId>
113 <version>${segmentrouting.version}</version>
114 <type>oar</type>
115 <overWrite>true</overWrite>
116 </artifactItem>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -0400117 </artifactItems>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
122
123 <repositories>
124 <repository>
125 <id>central</id>
126 <name>Central Repository</name>
Matt Jeanneretbe994fd2020-01-22 07:34:55 -0500127 <url>https://repo.maven.apache.org/maven2</url>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -0400128 <layout>default</layout>
129 <snapshots>
130 <enabled>false</enabled>
131 </snapshots>
132 <releases>
133 <enabled>true</enabled>
134 <updatePolicy>always</updatePolicy>
135 <checksumPolicy>fail</checksumPolicy>
136 </releases>
137 </repository>
138
139 <repository>
140 <id>snapshots</id>
141 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
142 <snapshots>
143 <enabled>true</enabled>
144 <updatePolicy>always</updatePolicy>
145 <checksumPolicy>fail</checksumPolicy>
146 </snapshots>
147 </repository>
148 </repositories>
149
150</project>