4c1a000f6d8ce6f6cde6c63ed08eb38a0ba83171
[oam/tr069-adapter.git] / acs / cpe / 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.cpe</groupId>\r
27         <artifactId>cpe</artifactId>\r
28         <name>CPE Management</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>com.sun.xml.messaging.saaj</groupId>\r
79                         <artifactId>saaj-impl</artifactId>\r
80                 </dependency>\r
81                 <dependency>\r
82                         <groupId>javax.xml.bind</groupId>\r
83                         <artifactId>jaxb-api</artifactId>\r
84                 </dependency>\r
85                 <dependency>\r
86                         <groupId>commons-httpclient</groupId>\r
87                         <artifactId>commons-httpclient</artifactId>\r
88                         <version>3.1</version>\r
89                 </dependency>\r
90                 <dependency>\r
91                         <groupId>org.commscope.tr069adapter.common</groupId>\r
92                         <artifactId>common</artifactId>\r
93                         <version>1.0.0</version>\r
94                 </dependency>\r
95                 <dependency>\r
96          <groupId>org.commscope.tr069adapter.acs.common</groupId>\r
97          <artifactId>acs-common</artifactId>\r
98          <version>1.0.0</version>\r
99       </dependency>\r
100         </dependencies>\r
101    <build>\r
102       <plugins>\r
103          <plugin>\r
104             <groupId>net.revelc.code.formatter</groupId>\r
105             <artifactId>formatter-maven-plugin</artifactId>\r
106             <version>${formatter-maven-plugin.version}</version>\r
107             <configuration>\r
108                <configFile>${project.parent.parent.basedir}/eclipse-formatter.xml</configFile>\r
109             </configuration>\r
110             <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format\r
111                                         spotless:apply process-sources -->\r
112          </plugin>\r
113          <plugin>\r
114             <groupId>com.diffplug.spotless</groupId>\r
115             <artifactId>spotless-maven-plugin</artifactId>\r
116             <version>${spotless-maven-plugin.version}</version>\r
117             <configuration>\r
118                <java>\r
119                   <removeUnusedImports />\r
120                   <importOrder>\r
121                      <order>com,java,javax,org</order>\r
122                   </importOrder>\r
123                </java>\r
124             </configuration>\r
125             <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use\r
126                                         mvn spotless:apply to rewrite source files use mvn spotless:check to validate\r
127                                         source files -->\r
128          </plugin>\r
129          <!-- support sonar in multi-module project -->\r
130          <plugin>\r
131             <groupId>org.sonarsource.scanner.maven</groupId>\r
132             <artifactId>sonar-maven-plugin</artifactId>\r
133             <version>${sonar-maven-plugin.version}</version>\r
134          </plugin>\r
135       </plugins>\r
136    </build>\r
137    <issueManagement>\r
138       <system>JIRA</system>\r
139       <url>https://jira.o-ran-sc.org/</url>\r
140    </issueManagement>\r
141 </project>