Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Joey Armstrong | 695ba5c | 2023-01-20 11:17:49 -0500 | [diff] [blame] | 3 | ~ Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 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> |
Gustavo Silva | 460edf0 | 2022-09-15 14:08:17 -0300 | [diff] [blame] | 27 | <olt.version>5.2.2</olt.version> |
Andrea Campanella | b736260 | 2022-06-30 15:30:48 +0200 | [diff] [blame] | 28 | <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 Campanella | 67f6157 | 2021-05-28 18:43:02 +0200 | [diff] [blame] | 36 | <segmentrouting.version>3.0.0</segmentrouting.version> |
Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 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>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 Jeanneret | 38995f2 | 2019-08-02 14:22:40 -0400 | [diff] [blame] | 63 | <artifactId>aaa-app</artifactId> |
Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 64 | <version>${aaa.version}</version> |
| 65 | <type>oar</type> |
| 66 | <overWrite>true</overWrite> |
| 67 | </artifactItem> |
| 68 | <artifactItem> |
| 69 | <groupId>org.opencord</groupId> |
Matt Jeanneret | 38995f2 | 2019-08-02 14:22:40 -0400 | [diff] [blame] | 70 | <artifactId>dhcpl2relay-app</artifactId> |
Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 71 | <version>${dhcpl2relay.version}</version> |
| 72 | <type>oar</type> |
| 73 | <overWrite>true</overWrite> |
| 74 | </artifactItem> |
Matt Jeanneret | 38995f2 | 2019-08-02 14:22:40 -0400 | [diff] [blame] | 75 | <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 Scandolo | 87cd82e | 2020-03-16 18:09:00 -0700 | [diff] [blame] | 82 | <artifactItem> |
| 83 | <groupId>org.opencord</groupId> |
Matteo Scandolo | 9f412be | 2020-03-25 17:12:12 -0700 | [diff] [blame] | 84 | <artifactId>onos-app-igmpproxy-app</artifactId> |
Matteo Scandolo | 87cd82e | 2020-03-16 18:09:00 -0700 | [diff] [blame] | 85 | <version>${igmpproxy.version}</version> |
| 86 | <type>oar</type> |
| 87 | <overWrite>true</overWrite> |
| 88 | </artifactItem> |
| 89 | <artifactItem> |
| 90 | <groupId>org.opencord</groupId> |
Matteo Scandolo | 9f412be | 2020-03-25 17:12:12 -0700 | [diff] [blame] | 91 | <artifactId>mcast-app</artifactId> |
Matteo Scandolo | 87cd82e | 2020-03-16 18:09:00 -0700 | [diff] [blame] | 92 | <version>${mcast.version}</version> |
| 93 | <type>oar</type> |
| 94 | <overWrite>true</overWrite> |
| 95 | </artifactItem> |
Andrea Campanella | 67f6157 | 2021-05-28 18:43:02 +0200 | [diff] [blame] | 96 | <artifactItem> |
Andrea Campanella | 090ffd6 | 2022-02-08 13:41:53 +0100 | [diff] [blame] | 97 | <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 Campanella | c9d60ac | 2022-05-26 14:06:44 +0200 | [diff] [blame] | 104 | <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 Campanella | 67f6157 | 2021-05-28 18:43:02 +0200 | [diff] [blame] | 111 | <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 Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 117 | </artifactItems> |
| 118 | </configuration> |
| 119 | </plugin> |
| 120 | </plugins> |
| 121 | </build> |
| 122 | |
| 123 | <repositories> |
| 124 | <repository> |
| 125 | <id>central</id> |
| 126 | <name>Central Repository</name> |
Matt Jeanneret | be994fd | 2020-01-22 07:34:55 -0500 | [diff] [blame] | 127 | <url>https://repo.maven.apache.org/maven2</url> |
Matt Jeanneret | c7b437c | 2019-05-13 12:33:08 -0400 | [diff] [blame] | 128 | <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> |