blob: ef40eb86675eedf34ba9699d1d92da8edb45d285 [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 Campanellad41fe532022-01-14 11:11:29 +010027 <olt.version>5.1.0-SNAPSHOT</olt.version>
28 <sadis.version>5.6.0-SNAPSHOT</sadis.version>
29 <aaa.version>2.6.0-SNAPSHOT</aaa.version>
30 <dhcpl2relay.version>2.7.0-SNAPSHOT</dhcpl2relay.version>
31 <kafka.version>2.9.0-SNAPSHOT</kafka.version>
32 <igmpproxy.version>2.5.0-SNAPSHOT</igmpproxy.version>
33 <mcast.version>2.6.0-SNAPSHOT</mcast.version>
34 <maclearner.version>1.2.1-SNAPSHOT</maclearner.version>
Andrea Campanella67f61572021-05-28 18:43:02 +020035 <segmentrouting.version>3.0.0</segmentrouting.version>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040036 </properties>
37
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-dependency-plugin</artifactId>
43 <version>3.0.1</version>
44 <configuration>
45 <artifactItems>
46 <artifactItem>
47 <groupId>org.opencord</groupId>
48 <artifactId>olt-app</artifactId>
49 <version>${olt.version}</version>
50 <type>oar</type>
51 <overWrite>true</overWrite>
52 </artifactItem>
53 <artifactItem>
54 <groupId>org.opencord</groupId>
55 <artifactId>sadis-app</artifactId>
56 <version>${sadis.version}</version>
57 <type>oar</type>
58 <overWrite>true</overWrite>
59 </artifactItem>
60 <artifactItem>
61 <groupId>org.opencord</groupId>
Matt Jeanneret38995f22019-08-02 14:22:40 -040062 <artifactId>aaa-app</artifactId>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040063 <version>${aaa.version}</version>
64 <type>oar</type>
65 <overWrite>true</overWrite>
66 </artifactItem>
67 <artifactItem>
68 <groupId>org.opencord</groupId>
Matt Jeanneret38995f22019-08-02 14:22:40 -040069 <artifactId>dhcpl2relay-app</artifactId>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040070 <version>${dhcpl2relay.version}</version>
71 <type>oar</type>
72 <overWrite>true</overWrite>
73 </artifactItem>
Matt Jeanneret38995f22019-08-02 14:22:40 -040074 <artifactItem>
75 <groupId>org.opencord</groupId>
76 <artifactId>kafka</artifactId>
77 <version>${kafka.version}</version>
78 <type>oar</type>
79 <overWrite>true</overWrite>
80 </artifactItem>
Matteo Scandolo87cd82e2020-03-16 18:09:00 -070081 <artifactItem>
82 <groupId>org.opencord</groupId>
Matteo Scandolo9f412be2020-03-25 17:12:12 -070083 <artifactId>onos-app-igmpproxy-app</artifactId>
Matteo Scandolo87cd82e2020-03-16 18:09:00 -070084 <version>${igmpproxy.version}</version>
85 <type>oar</type>
86 <overWrite>true</overWrite>
87 </artifactItem>
88 <artifactItem>
89 <groupId>org.opencord</groupId>
Matteo Scandolo9f412be2020-03-25 17:12:12 -070090 <artifactId>mcast-app</artifactId>
Matteo Scandolo87cd82e2020-03-16 18:09:00 -070091 <version>${mcast.version}</version>
92 <type>oar</type>
93 <overWrite>true</overWrite>
94 </artifactItem>
Andrea Campanella67f61572021-05-28 18:43:02 +020095 <artifactItem>
Andrea Campanella090ffd62022-02-08 13:41:53 +010096 <groupId>org.opencord</groupId>
97 <artifactId>maclearner-app</artifactId>
98 <version>${maclearner.version}</version>
99 <type>oar</type>
100 <overWrite>true</overWrite>
101 </artifactItem>
102 <artifactItem>
Andrea Campanella67f61572021-05-28 18:43:02 +0200103 <groupId>org.onosproject</groupId>
104 <artifactId>segmentrouting-app</artifactId>
105 <version>${segmentrouting.version}</version>
106 <type>oar</type>
107 <overWrite>true</overWrite>
108 </artifactItem>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -0400109 </artifactItems>
110 </configuration>
111 </plugin>
112 </plugins>
113 </build>
114
115 <repositories>
116 <repository>
117 <id>central</id>
118 <name>Central Repository</name>
Matt Jeanneretbe994fd2020-01-22 07:34:55 -0500119 <url>https://repo.maven.apache.org/maven2</url>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -0400120 <layout>default</layout>
121 <snapshots>
122 <enabled>false</enabled>
123 </snapshots>
124 <releases>
125 <enabled>true</enabled>
126 <updatePolicy>always</updatePolicy>
127 <checksumPolicy>fail</checksumPolicy>
128 </releases>
129 </repository>
130
131 <repository>
132 <id>snapshots</id>
133 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
134 <snapshots>
135 <enabled>true</enabled>
136 <updatePolicy>always</updatePolicy>
137 <checksumPolicy>fail</checksumPolicy>
138 </snapshots>
139 </repository>
140 </repositories>
141
142</project>