blob: 7c6848260dfab38291be0e685828647bb6d5f345 [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>
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 Chan53606552020-06-24 22:33:56 -070064 </plugins>
65 </build>
66
67 <repositories>
68 <repository>
69 <id>central</id>
70 <name>Central Repository</name>
71 <url>https://repo.maven.apache.org/maven2</url>
72 <layout>default</layout>
73 <snapshots>
74 <enabled>false</enabled>
75 </snapshots>
76 <releases>
77 <enabled>true</enabled>
78 <updatePolicy>always</updatePolicy>
79 <checksumPolicy>fail</checksumPolicy>
80 </releases>
81 </repository>
82
83 <repository>
84 <id>snapshots</id>
85 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
86 <snapshots>
87 <enabled>true</enabled>
88 <updatePolicy>always</updatePolicy>
89 <checksumPolicy>fail</checksumPolicy>
90 </snapshots>
91 </repository>
92 </repositories>
93
94 <distributionManagement>
95 <snapshotRepository>
96 <id>ossrh</id>
97 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
98 </snapshotRepository>
99 </distributionManagement>
100</project>