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