blob: 7f2a7d6e3995c547d96d5b6d19d4f4a499574759 [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>
Daniele Moro26019982022-01-27 17:44:12 +010025 <version>2.5.7-SNAPSHOT</version>
Charles Chan7ac77e72020-06-25 15:32:21 -070026 </parent>
27
28 <groupId>org.onosproject</groupId>
29 <artifactId>t3</artifactId>
Carmelo Cascone46c255e2021-10-12 21:15:06 -070030 <version>4.1.0-SNAPSHOT</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>
Charles Chan159124e2020-11-17 00:12:34 -080048 <plugin>
49 <groupId>org.jacoco</groupId>
50 <artifactId>jacoco-maven-plugin</artifactId>
51 <version>0.8.6</version>
52 <executions>
53 <execution>
54 <goals>
55 <goal>prepare-agent</goal>
56 </goals>
57 </execution>
58 <!-- attached to Maven test phase -->
59 <execution>
60 <id>report</id>
61 <phase>test</phase>
62 <goals>
63 <goal>report</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
Charles Chan7ac77e72020-06-25 15:32:21 -070068 </plugins>
69 </build>
70
71 <repositories>
72 <repository>
73 <id>central</id>
74 <name>Central Repository</name>
75 <url>https://repo.maven.apache.org/maven2</url>
76 <layout>default</layout>
77 <snapshots>
78 <enabled>false</enabled>
79 </snapshots>
80 <releases>
81 <enabled>true</enabled>
82 <updatePolicy>always</updatePolicy>
83 <checksumPolicy>fail</checksumPolicy>
84 </releases>
85 </repository>
86
87 <repository>
88 <id>snapshots</id>
89 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
90 <snapshots>
91 <enabled>true</enabled>
92 <updatePolicy>always</updatePolicy>
93 <checksumPolicy>fail</checksumPolicy>
94 </snapshots>
95 </repository>
96 </repositories>
97
pierventre0d5757d2022-01-10 12:29:06 +010098 <pluginRepositories>
99 <pluginRepository>
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 </pluginRepository>
108 </pluginRepositories>
109
Charles Chan7ac77e72020-06-25 15:32:21 -0700110 <distributionManagement>
111 <snapshotRepository>
112 <id>ossrh</id>
113 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
114 </snapshotRepository>
115 </distributionManagement>
116</project>