Charles Chan | 7ac77e7 | 2020-06-25 15:32:21 -0700 | [diff] [blame] | 1 | <?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> |
pierventre | 4fd3b46 | 2020-10-15 17:31:44 +0200 | [diff] [blame^] | 25 | <version>2.5.1</version> |
Charles Chan | 7ac77e7 | 2020-06-25 15:32:21 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <groupId>org.onosproject</groupId> |
| 29 | <artifactId>t3</artifactId> |
Jenkins | d620a92 | 2020-09-10 20:54:11 +0000 | [diff] [blame] | 30 | <version>4.0.0-SNAPSHOT</version> |
Charles Chan | 7ac77e7 | 2020-06-25 15:32:21 -0700 | [diff] [blame] | 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 | |
Charles Chan | 7ac77e7 | 2020-06-25 15:32:21 -0700 | [diff] [blame] | 39 | <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 Chan | 159124e | 2020-11-17 00:12:34 -0800 | [diff] [blame] | 48 | <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 Chan | 7ac77e7 | 2020-06-25 15:32:21 -0700 | [diff] [blame] | 68 | </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 | |
| 98 | <distributionManagement> |
| 99 | <snapshotRepository> |
| 100 | <id>ossrh</id> |
| 101 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 102 | </snapshotRepository> |
| 103 | </distributionManagement> |
| 104 | </project> |