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