Charles Chan | 5360655 | 2020-06-24 22:33:56 -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> |
Charles Chan | 336a0ed | 2020-12-05 03:39:47 -0800 | [diff] [blame^] | 25 | <version>2.5.0</version> |
Charles Chan | 5360655 | 2020-06-24 22:33:56 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <groupId>org.onosproject</groupId> |
| 29 | <artifactId>segmentrouting</artifactId> |
Jenkins | 625f7fa | 2020-09-10 10:19:26 +0000 | [diff] [blame] | 30 | <version>3.0.1-SNAPSHOT</version> |
Charles Chan | 5360655 | 2020-06-24 22:33:56 -0700 | [diff] [blame] | 31 | <packaging>pom</packaging> |
| 32 | <url>http://trellisfabric.org</url> |
| 33 | <description>Trellis control</description> |
| 34 | |
| 35 | <modules> |
Charles Chan | b32c5d9 | 2020-09-04 11:49:04 -0700 | [diff] [blame] | 36 | <module>api</module> |
Charles Chan | 1fdf489 | 2020-09-04 14:38:06 -0700 | [diff] [blame] | 37 | <module>impl</module> |
Charles Chan | 5360655 | 2020-06-24 22:33:56 -0700 | [diff] [blame] | 38 | <module>web</module> |
Charles Chan | 1fdf489 | 2020-09-04 14:38:06 -0700 | [diff] [blame] | 39 | <module>app</module> |
Charles Chan | 5360655 | 2020-06-24 22:33:56 -0700 | [diff] [blame] | 40 | </modules> |
| 41 | |
| 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.maven.plugins</groupId> |
| 46 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 47 | <configuration> |
| 48 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
| 49 | </configuration> |
| 50 | </plugin> |
Charles Chan | c7978b1 | 2020-07-01 14:11:13 -0700 | [diff] [blame] | 51 | <plugin> |
| 52 | <groupId>org.apache.maven.plugins</groupId> |
| 53 | <artifactId>maven-javadoc-plugin</artifactId> |
| 54 | <configuration> |
| 55 | <tags> |
| 56 | <tag> |
| 57 | <name>onos.rsModel</name> |
| 58 | <placement>m</placement> |
| 59 | <head>Json model for REST api:</head> |
| 60 | </tag> |
| 61 | </tags> |
| 62 | </configuration> |
| 63 | </plugin> |
Charles Chan | 2ec8952 | 2020-11-17 00:13:26 -0800 | [diff] [blame] | 64 | <plugin> |
| 65 | <groupId>org.jacoco</groupId> |
| 66 | <artifactId>jacoco-maven-plugin</artifactId> |
| 67 | <version>0.8.6</version> |
| 68 | <executions> |
| 69 | <execution> |
| 70 | <goals> |
| 71 | <goal>prepare-agent</goal> |
| 72 | </goals> |
| 73 | </execution> |
| 74 | <!-- attached to Maven test phase --> |
| 75 | <execution> |
| 76 | <id>report</id> |
| 77 | <phase>test</phase> |
| 78 | <goals> |
| 79 | <goal>report</goal> |
| 80 | </goals> |
| 81 | </execution> |
| 82 | </executions> |
| 83 | </plugin> |
Charles Chan | 5360655 | 2020-06-24 22:33:56 -0700 | [diff] [blame] | 84 | </plugins> |
| 85 | </build> |
| 86 | |
| 87 | <repositories> |
| 88 | <repository> |
| 89 | <id>central</id> |
| 90 | <name>Central Repository</name> |
| 91 | <url>https://repo.maven.apache.org/maven2</url> |
| 92 | <layout>default</layout> |
| 93 | <snapshots> |
| 94 | <enabled>false</enabled> |
| 95 | </snapshots> |
| 96 | <releases> |
| 97 | <enabled>true</enabled> |
| 98 | <updatePolicy>always</updatePolicy> |
| 99 | <checksumPolicy>fail</checksumPolicy> |
| 100 | </releases> |
| 101 | </repository> |
| 102 | |
| 103 | <repository> |
| 104 | <id>snapshots</id> |
| 105 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 106 | <snapshots> |
| 107 | <enabled>true</enabled> |
| 108 | <updatePolicy>always</updatePolicy> |
| 109 | <checksumPolicy>fail</checksumPolicy> |
| 110 | </snapshots> |
| 111 | </repository> |
| 112 | </repositories> |
| 113 | |
| 114 | <distributionManagement> |
| 115 | <snapshotRepository> |
| 116 | <id>ossrh</id> |
| 117 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 118 | </snapshotRepository> |
| 119 | </distributionManagement> |
| 120 | </project> |