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