adding the SNAPSHOT in pom
[oam/tr069-adapter.git] / common / pom.xml
1 <!--
2 /*
3  * ============LICENSE_START========================================================================
4  * ONAP : tr-069-adapter
5  * =================================================================================================
6  * Copyright (C) 2020 CommScope Inc Intellectual Property.
7  * =================================================================================================
8  * This tr-069-adapter software file is distributed by CommScope Inc
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * This file is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ===============LICENSE_END=======================================================================
20 */
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23    <modelVersion>4.0.0</modelVersion>
24    <groupId>org.commscope.tr069adapter.common</groupId>
25    <artifactId>common</artifactId>
26    <name>common utility</name>
27    <parent>
28       <groupId>org.commscope.tr069adapter</groupId>
29       <artifactId>tr069adapter</artifactId>
30       <version>${project.version}</version>
31    </parent>
32    <dependencies>
33       <dependency>
34          <groupId>org.springframework.boot</groupId>
35          <artifactId>spring-boot-starter-web</artifactId>
36          <exclusions>
37             <exclusion>
38                <groupId>org.springframework.boot</groupId>
39                <artifactId>spring-boot-starter-logging</artifactId>
40             </exclusion>
41          </exclusions>
42       </dependency>
43       <dependency>
44          <groupId>org.springframework.boot</groupId>
45          <artifactId>spring-boot-starter-log4j2</artifactId>
46       </dependency>
47       <dependency>
48          <groupId>com.lmax</groupId>
49          <artifactId>disruptor</artifactId>
50          <version>3.4.2</version>
51       </dependency>
52       <dependency>
53          <groupId>org.springframework.boot</groupId>
54          <artifactId>spring-boot-starter-quartz</artifactId>
55       </dependency>
56    </dependencies>
57    <build>
58       <plugins>
59          <plugin>
60             <groupId>net.revelc.code.formatter</groupId>
61             <artifactId>formatter-maven-plugin</artifactId>
62             <version>${formatter-maven-plugin.version}</version>
63             <configuration>
64                <configFile>${project.parent.basedir}/eclipse-formatter.xml</configFile>
65             </configuration>
66             <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format
67                                         spotless:apply process-sources -->
68          </plugin>
69          <plugin>
70             <groupId>com.diffplug.spotless</groupId>
71             <artifactId>spotless-maven-plugin</artifactId>
72             <version>${spotless-maven-plugin.version}</version>
73             <configuration>
74                <java>
75                   <removeUnusedImports />
76                   <importOrder>
77                      <order>com,java,javax,org</order>
78                   </importOrder>
79                </java>
80             </configuration>
81             <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use
82                                         mvn spotless:apply to rewrite source files use mvn spotless:check to validate
83                                         source files -->
84          </plugin>
85       </plugins>
86    </build>
87    <issueManagement>
88       <system>JIRA</system>
89       <url>https://jira.o-ran-sc.org/</url>
90    </issueManagement>
91 </project>