a148d164070a42f428f1bf104e12d6f931b130a0
[oam/tr069-adapter.git] / acs / nbi / pom.xml
1 <!--
2 /*
3  * ============LICENSE_START========================================================================
4  * O-RAN-SC : 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
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25         
26         <modelVersion>4.0.0</modelVersion>
27         <groupId>org.commscope.tr069adapter.acs.nbi</groupId>
28         <artifactId>acsnbi</artifactId>
29         <name>acs nbi service</name>
30         
31         <parent>
32                 <groupId>org.commscope.tr069adapter.acs</groupId>
33                 <artifactId>acs</artifactId>
34                 <version>1.0.0</version>
35         </parent>
36         
37         <dependencies>
38                 <dependency>
39                         <groupId>org.springframework</groupId>
40                         <artifactId>spring-jms</artifactId>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.springframework.boot</groupId>
44                         <artifactId>spring-boot-starter-web</artifactId>
45                         <exclusions>
46                 <exclusion>
47                     <groupId>org.springframework.boot</groupId>
48                     <artifactId>spring-boot-starter-logging</artifactId>
49                 </exclusion>
50             </exclusions>
51                 </dependency>
52                 <dependency>
53                 <groupId>org.springframework.boot</groupId>
54                 <artifactId>spring-boot-starter-log4j2</artifactId>
55                 </dependency>
56                 <dependency>
57             <groupId>com.lmax</groupId>
58             <artifactId>disruptor</artifactId>
59             <version>3.4.2</version>
60         </dependency>
61                 <dependency>
62                         <groupId>org.apache.activemq</groupId>
63                         <artifactId>activemq-broker</artifactId>
64                 </dependency>
65                 <dependency>
66                         <groupId>com.fasterxml.jackson.core</groupId>
67                         <artifactId>jackson-databind</artifactId>
68                 </dependency>
69                 <dependency>
70                         <groupId>javax.ws.rs</groupId>
71                         <artifactId>javax.ws.rs-api</artifactId>
72                         <version>2.0</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.commscope.tr069adapter.common</groupId>
76                         <artifactId>common</artifactId>
77                         <version>1.0.0</version>
78                 </dependency>
79                 <dependency>
80          <groupId>org.commscope.tr069adapter.acs.common</groupId>
81          <artifactId>acs-common</artifactId>
82          <version>1.0.0</version>
83       </dependency>
84                 <dependency>
85                         <groupId>org.commscope.tr069adapter.acs.requestprocessor</groupId>
86                         <artifactId>requestprocessor</artifactId>
87                         <version>1.0.0</version>
88                 </dependency>
89         </dependencies>
90    <build>
91       <plugins>
92          <plugin>
93             <groupId>net.revelc.code.formatter</groupId>
94             <artifactId>formatter-maven-plugin</artifactId>
95             <version>${formatter-maven-plugin.version}</version>
96             <configuration>
97                <configFile>${project.parent.parent.basedir}/eclipse-formatter.xml</configFile>
98             </configuration>
99             <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format
100                                         spotless:apply process-sources -->
101          </plugin>
102          <plugin>
103             <groupId>com.diffplug.spotless</groupId>
104             <artifactId>spotless-maven-plugin</artifactId>
105             <version>${spotless-maven-plugin.version}</version>
106             <configuration>
107                <java>
108                   <removeUnusedImports />
109                   <importOrder>
110                      <order>com,java,javax,org</order>
111                   </importOrder>
112                </java>
113             </configuration>
114             <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use
115                                         mvn spotless:apply to rewrite source files use mvn spotless:check to validate
116                                         source files -->
117          </plugin>
118          <!-- support sonar in multi-module project -->
119          <plugin>
120             <groupId>org.sonarsource.scanner.maven</groupId>
121             <artifactId>sonar-maven-plugin</artifactId>
122             <version>${sonar-maven-plugin.version}</version>
123          </plugin>
124       </plugins>
125    </build>
126    <issueManagement>
127       <system>JIRA</system>
128       <url>https://jira.o-ran-sc.org/</url>
129    </issueManagement>
130 </project>