blob: a6a46012da6600ace1c833f1bcb524ca5d042b64 [file] [log] [blame]
Charles Chan53606552020-06-24 22:33:56 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-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 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
25 <version>2.2.3-b2</version>
26 </parent>
27
28 <groupId>org.onosproject</groupId>
29 <artifactId>segmentrouting</artifactId>
30 <version>3.0.0-SNAPSHOT</version>
31 <packaging>pom</packaging>
32 <url>http://trellisfabric.org</url>
33 <description>Trellis control</description>
34
35 <modules>
36 <module>app</module>
37 <module>web</module>
38 <module>oar</module>
39 </modules>
40
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-checkstyle-plugin</artifactId>
46 <configuration>
47 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
48 </configuration>
49 </plugin>
50 </plugins>
51 </build>
52
53 <repositories>
54 <repository>
55 <id>central</id>
56 <name>Central Repository</name>
57 <url>https://repo.maven.apache.org/maven2</url>
58 <layout>default</layout>
59 <snapshots>
60 <enabled>false</enabled>
61 </snapshots>
62 <releases>
63 <enabled>true</enabled>
64 <updatePolicy>always</updatePolicy>
65 <checksumPolicy>fail</checksumPolicy>
66 </releases>
67 </repository>
68
69 <repository>
70 <id>snapshots</id>
71 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
72 <snapshots>
73 <enabled>true</enabled>
74 <updatePolicy>always</updatePolicy>
75 <checksumPolicy>fail</checksumPolicy>
76 </snapshots>
77 </repository>
78 </repositories>
79
80 <distributionManagement>
81 <snapshotRepository>
82 <id>ossrh</id>
83 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
84 </snapshotRepository>
85 </distributionManagement>
86</project>