blob: f9ade96afee31a4e0d003fde1754eaba1344e547 [file] [log] [blame]
Charles Chan53606552020-06-24 22:33:56 -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>
pierventre60cea362021-11-10 12:37:11 +010025 <version>2.5.5-SNAPSHOT</version>
Charles Chan53606552020-06-24 22:33:56 -070026 </parent>
27
28 <groupId>org.onosproject</groupId>
29 <artifactId>segmentrouting</artifactId>
Carmelo Casconebf576fa2021-10-12 21:12:14 -070030 <version>3.2.0-SNAPSHOT</version>
Charles Chan53606552020-06-24 22:33:56 -070031 <packaging>pom</packaging>
32 <url>http://trellisfabric.org</url>
33 <description>Trellis control</description>
34
35 <modules>
Charles Chanb32c5d92020-09-04 11:49:04 -070036 <module>api</module>
Charles Chan1fdf4892020-09-04 14:38:06 -070037 <module>impl</module>
Charles Chan53606552020-06-24 22:33:56 -070038 <module>web</module>
Charles Chan1fdf4892020-09-04 14:38:06 -070039 <module>app</module>
Charles Chan53606552020-06-24 22:33:56 -070040 </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 Chanc7978b12020-07-01 14:11:13 -070051 <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 Chan2ec89522020-11-17 00:13:26 -080064 <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 Chan53606552020-06-24 22:33:56 -070084 </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
Daniele Moro23fbbed2021-07-23 16:31:49 +0200114 <pluginRepositories>
115 <pluginRepository>
116 <id>snapshots</id>
117 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
118 <snapshots>
119 <enabled>true</enabled>
120 <updatePolicy>always</updatePolicy>
121 <checksumPolicy>fail</checksumPolicy>
122 </snapshots>
123 </pluginRepository>
124 </pluginRepositories>
125
Charles Chan53606552020-06-24 22:33:56 -0700126 <distributionManagement>
127 <snapshotRepository>
128 <id>ossrh</id>
129 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
130 </snapshotRepository>
131 </distributionManagement>
132</project>