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