blob: 864ae547f9309fa33e2103f187413d8232d711cb [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>
25 <version>2.2.3-b2</version>
26 </parent>
27
28 <groupId>org.onosproject</groupId>
29 <artifactId>segmentrouting</artifactId>
30 <version>3.0.0-SNAPSHOT</version>
31 <packaging>pom</packaging>
32 <url>http://trellisfabric.org</url>
33 <description>Trellis control</description>
34
35 <modules>
36 <module>app</module>
37 <module>web</module>
38 <module>oar</module>
39 </modules>
40
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-checkstyle-plugin</artifactId>
46 <configuration>
47 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
48 </configuration>
49 </plugin>
Charles Chanc7978b12020-07-01 14:11:13 -070050 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-javadoc-plugin</artifactId>
53 <configuration>
54 <tags>
55 <tag>
56 <name>onos.rsModel</name>
57 <placement>m</placement>
58 <head>Json model for REST api:</head>
59 </tag>
60 </tags>
61 </configuration>
62 </plugin>
Charles Chan53606552020-06-24 22:33:56 -070063 </plugins>
64 </build>
65
66 <repositories>
67 <repository>
68 <id>central</id>
69 <name>Central Repository</name>
70 <url>https://repo.maven.apache.org/maven2</url>
71 <layout>default</layout>
72 <snapshots>
73 <enabled>false</enabled>
74 </snapshots>
75 <releases>
76 <enabled>true</enabled>
77 <updatePolicy>always</updatePolicy>
78 <checksumPolicy>fail</checksumPolicy>
79 </releases>
80 </repository>
81
82 <repository>
83 <id>snapshots</id>
84 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
85 <snapshots>
86 <enabled>true</enabled>
87 <updatePolicy>always</updatePolicy>
88 <checksumPolicy>fail</checksumPolicy>
89 </snapshots>
90 </repository>
91 </repositories>
92
93 <distributionManagement>
94 <snapshotRepository>
95 <id>ossrh</id>
96 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
97 </snapshotRepository>
98 </distributionManagement>
99</project>