blob: 8868d43989f6dbb8dcbf3a0f0fca38c49980b5b5 [file] [log] [blame]
Charles Chan7ac77e72020-06-25 15:32:21 -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>t3</artifactId>
30 <version>3.0.0-SNAPSHOT</version>
31 <packaging>pom</packaging>
32 <url>http://trellisfabric.org</url>
33 <description>Trellis troubleshooting tools</description>
34
35 <modules>
36 <module>app</module>
37 </modules>
38
39 <properties>
40 <segmentrouting.version>3.0.0-SNAPSHOT</segmentrouting.version>
41 </properties>
42
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-checkstyle-plugin</artifactId>
48 <configuration>
49 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54
55 <repositories>
56 <repository>
57 <id>central</id>
58 <name>Central Repository</name>
59 <url>https://repo.maven.apache.org/maven2</url>
60 <layout>default</layout>
61 <snapshots>
62 <enabled>false</enabled>
63 </snapshots>
64 <releases>
65 <enabled>true</enabled>
66 <updatePolicy>always</updatePolicy>
67 <checksumPolicy>fail</checksumPolicy>
68 </releases>
69 </repository>
70
71 <repository>
72 <id>snapshots</id>
73 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
74 <snapshots>
75 <enabled>true</enabled>
76 <updatePolicy>always</updatePolicy>
77 <checksumPolicy>fail</checksumPolicy>
78 </snapshots>
79 </repository>
80 </repositories>
81
82 <distributionManagement>
83 <snapshotRepository>
84 <id>ossrh</id>
85 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
86 </snapshotRepository>
87 </distributionManagement>
88</project>