blob: 14887edc5d06b4b926c6e76e5876a5e9abf82292 [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>
Matteo Scandolo1671dd22020-01-22 15:17:41 -080027 <olt.version>3.1.0</olt.version>
28 <sadis.version>3.1.1</sadis.version>
29 <aaa.version>1.10.1</aaa.version>
30 <dhcpl2relay.version>1.6.3</dhcpl2relay.version>
31 <kafka.version>1.2.1</kafka.version>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040032 </properties>
33
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-dependency-plugin</artifactId>
39 <version>3.0.1</version>
40 <configuration>
41 <artifactItems>
42 <artifactItem>
43 <groupId>org.opencord</groupId>
44 <artifactId>olt-app</artifactId>
45 <version>${olt.version}</version>
46 <type>oar</type>
47 <overWrite>true</overWrite>
48 </artifactItem>
49 <artifactItem>
50 <groupId>org.opencord</groupId>
51 <artifactId>sadis-app</artifactId>
52 <version>${sadis.version}</version>
53 <type>oar</type>
54 <overWrite>true</overWrite>
55 </artifactItem>
56 <artifactItem>
57 <groupId>org.opencord</groupId>
Matt Jeanneret38995f22019-08-02 14:22:40 -040058 <artifactId>aaa-app</artifactId>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040059 <version>${aaa.version}</version>
60 <type>oar</type>
61 <overWrite>true</overWrite>
62 </artifactItem>
63 <artifactItem>
64 <groupId>org.opencord</groupId>
Matt Jeanneret38995f22019-08-02 14:22:40 -040065 <artifactId>dhcpl2relay-app</artifactId>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040066 <version>${dhcpl2relay.version}</version>
67 <type>oar</type>
68 <overWrite>true</overWrite>
69 </artifactItem>
Matt Jeanneret38995f22019-08-02 14:22:40 -040070 <artifactItem>
71 <groupId>org.opencord</groupId>
72 <artifactId>kafka</artifactId>
73 <version>${kafka.version}</version>
74 <type>oar</type>
75 <overWrite>true</overWrite>
76 </artifactItem>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040077 </artifactItems>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
82
83 <repositories>
84 <repository>
85 <id>central</id>
86 <name>Central Repository</name>
Matt Jeanneretbe994fd2020-01-22 07:34:55 -050087 <url>https://repo.maven.apache.org/maven2</url>
Matt Jeanneretc7b437c2019-05-13 12:33:08 -040088 <layout>default</layout>
89 <snapshots>
90 <enabled>false</enabled>
91 </snapshots>
92 <releases>
93 <enabled>true</enabled>
94 <updatePolicy>always</updatePolicy>
95 <checksumPolicy>fail</checksumPolicy>
96 </releases>
97 </repository>
98
99 <repository>
100 <id>snapshots</id>
101 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
102 <snapshots>
103 <enabled>true</enabled>
104 <updatePolicy>always</updatePolicy>
105 <checksumPolicy>fail</checksumPolicy>
106 </snapshots>
107 </repository>
108 </repositories>
109
110</project>