blob: 2d5a52c8a1f20403c7607e2aecf05f3addc37f88 [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>
27 <olt.version>2.1.0</olt.version>
28 <sadis.version>2.2.0</sadis.version>
29 <aaa.version>1.8.0</aaa.version>
30 <dhcpl2relay.version>1.5.0</dhcpl2relay.version>
31 </properties>
32
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-dependency-plugin</artifactId>
38 <version>3.0.1</version>
39 <configuration>
40 <artifactItems>
41 <artifactItem>
42 <groupId>org.opencord</groupId>
43 <artifactId>olt-app</artifactId>
44 <version>${olt.version}</version>
45 <type>oar</type>
46 <overWrite>true</overWrite>
47 </artifactItem>
48 <artifactItem>
49 <groupId>org.opencord</groupId>
50 <artifactId>sadis-app</artifactId>
51 <version>${sadis.version}</version>
52 <type>oar</type>
53 <overWrite>true</overWrite>
54 </artifactItem>
55 <artifactItem>
56 <groupId>org.opencord</groupId>
57 <artifactId>aaa</artifactId>
58 <version>${aaa.version}</version>
59 <type>oar</type>
60 <overWrite>true</overWrite>
61 </artifactItem>
62 <artifactItem>
63 <groupId>org.opencord</groupId>
64 <artifactId>dhcpl2relay</artifactId>
65 <version>${dhcpl2relay.version}</version>
66 <type>oar</type>
67 <overWrite>true</overWrite>
68 </artifactItem>
69 </artifactItems>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74
75 <repositories>
76 <repository>
77 <id>central</id>
78 <name>Central Repository</name>
79 <url>http://repo.maven.apache.org/maven2</url>
80 <layout>default</layout>
81 <snapshots>
82 <enabled>false</enabled>
83 </snapshots>
84 <releases>
85 <enabled>true</enabled>
86 <updatePolicy>always</updatePolicy>
87 <checksumPolicy>fail</checksumPolicy>
88 </releases>
89 </repository>
90
91 <repository>
92 <id>snapshots</id>
93 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
94 <snapshots>
95 <enabled>true</enabled>
96 <updatePolicy>always</updatePolicy>
97 <checksumPolicy>fail</checksumPolicy>
98 </snapshots>
99 </repository>
100 </repositories>
101
102</project>