blob: fb4f4b59250695c170dbeb7cc18ae214e26fbbe3 [file] [log] [blame]
amit.ghosh6104cf52021-01-07 16:53:28 +01001<?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:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xmlns="http://maven.apache.org/POM/4.0.0"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.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.7</version>
26 <relativePath></relativePath>
27 </parent>
28
29 <groupId>org.opencord</groupId>
30 <artifactId>olttopology</artifactId>
amit.ghosh39f696f2021-03-17 11:30:51 +010031 <version>1.0.2</version>
amit.ghosh6104cf52021-01-07 16:53:28 +010032 <packaging>pom</packaging>
33
34 <properties>
35 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36 <onos.version>2.2.7</onos.version>
37 <onos.app.name>org.opencord.olttopology</onos.app.name>
38 <onos.app.title>OLT Access Management</onos.app.title>
39 <onos.app.origin>OpenCord</onos.app.origin>
40 <onos.app.category>default</onos.app.category>
41 <onos.app.url>http://opencord.org</onos.app.url>
42 <onos.app.readme>CORD OLT Access management application</onos.app.readme>
43 </properties>
44
45 <modules>
46 <module>api</module>
47 <module>app</module>
48 </modules>
49
50 <dependencies>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-api</artifactId>
54 <version>${onos.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-misc</artifactId>
60 <version>${onos.version}</version>
61 </dependency>
62
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onlab-osgi</artifactId>
66 <version>${onos.version}</version>
67 </dependency>
68
69 <dependency>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onos-cli</artifactId>
72 <version>${onos.version}</version>
73 </dependency>
74
75 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-api</artifactId>
78 <version>${onos.version}</version>
79 <scope>test</scope>
80 <classifier>tests</classifier>
81 </dependency>
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onlab-osgi</artifactId>
85 <version>${onos.version}</version>
86 <classifier>tests</classifier>
87 <scope>test</scope>
88 </dependency>
89
90 <dependency>
91 <groupId>org.onosproject</groupId>
92 <artifactId>onos-core-common</artifactId>
93 <version>${onos.version}</version>
94 </dependency>
95
96 </dependencies>
97
98 <repositories>
99 <repository>
100 <id>central</id>
101 <name>Central Repository</name>
102 <url>https://repo.maven.apache.org/maven2</url>
103 <layout>default</layout>
104 <snapshots>
105 <enabled>false</enabled>
106 </snapshots>
107 <releases>
108 <enabled>true</enabled>
109 <updatePolicy>always</updatePolicy>
110 <checksumPolicy>fail</checksumPolicy>
111 </releases>
112 </repository>
113
114 <repository>
115 <id>snapshots</id>
116 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
117 <snapshots>
118 <enabled>true</enabled>
119 <updatePolicy>always</updatePolicy>
120 <checksumPolicy>fail</checksumPolicy>
121 </snapshots>
122 </repository>
123 </repositories>
124
125 <build>
126 <plugins>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-source-plugin</artifactId>
130 </plugin>
131 <!-- SpotBugs Static Analysis -->
132 <plugin>
133 <groupId>com.github.spotbugs</groupId>
134 <artifactId>spotbugs-maven-plugin</artifactId>
135 <version>4.0.4</version>
136 <configuration>
137 <effort>Max</effort>
138 <threshold>Low</threshold>
139 <failOnError>false</failOnError>
140 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
141 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
142 <plugins>
143 <plugin>
144 <groupId>com.h3xstream.findsecbugs</groupId>
145 <artifactId>findsecbugs-plugin</artifactId>
146 <version>1.10.1</version>
147 </plugin>
148 </plugins>
149 </configuration>
150 </plugin>
151 </plugins>
152 </build>
amit.ghosh39f696f2021-03-17 11:30:51 +0100153</project>