blob: 0e9cf72009bde8aa20aa00b13235e4e58f4f6495 [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>
Charles Chan606fc502020-09-08 21:00:28 -070025 <version>2.2.4</version>
Charles Chan7ac77e72020-06-25 15:32:21 -070026 </parent>
27
28 <groupId>org.onosproject</groupId>
29 <artifactId>t3</artifactId>
Jenkinsbfd26bf2020-09-10 20:53:52 +000030 <version>3.0.0</version>
Charles Chan7ac77e72020-06-25 15:32:21 -070031 <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
Charles Chan7ac77e72020-06-25 15:32:21 -070039 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-checkstyle-plugin</artifactId>
44 <configuration>
45 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50
51 <repositories>
52 <repository>
53 <id>central</id>
54 <name>Central Repository</name>
55 <url>https://repo.maven.apache.org/maven2</url>
56 <layout>default</layout>
57 <snapshots>
58 <enabled>false</enabled>
59 </snapshots>
60 <releases>
61 <enabled>true</enabled>
62 <updatePolicy>always</updatePolicy>
63 <checksumPolicy>fail</checksumPolicy>
64 </releases>
65 </repository>
66
67 <repository>
68 <id>snapshots</id>
69 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
70 <snapshots>
71 <enabled>true</enabled>
72 <updatePolicy>always</updatePolicy>
73 <checksumPolicy>fail</checksumPolicy>
74 </snapshots>
75 </repository>
76 </repositories>
77
78 <distributionManagement>
79 <snapshotRepository>
80 <id>ossrh</id>
81 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
82 </snapshotRepository>
83 </distributionManagement>
84</project>