Merge "removed unused imports"
[so.git] / adapters / mso-sdnc-adapter / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.onap.so</groupId>
6     <artifactId>adapters</artifactId>
7     <version>1.6.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>mso-sdnc-adapter</artifactId>
10   <properties>
11     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13   </properties>
14   <name>mso-sdnc-adapter</name>
15   <description>mso sdnc adapter</description>
16
17   <build>
18     <finalName>${project.artifactId}-${project.version}</finalName>
19     <plugins>
20       <plugin>
21         <groupId>org.apache.cxf</groupId>
22         <artifactId>cxf-codegen-plugin</artifactId>
23         <version>2.5.2</version>
24       </plugin>
25       <plugin>
26         <groupId>org.springframework.boot</groupId>
27         <artifactId>spring-boot-maven-plugin</artifactId>
28         <configuration>
29           <mainClass>org.onap.so.adapters.sdnc.SDNCAdapterApplication</mainClass>
30         </configuration>
31         <executions>
32           <execution>
33             <goals>
34               <goal>repackage</goal>
35             </goals>
36           </execution>
37         </executions>
38       </plugin>
39       <plugin>
40         <groupId>org.apache.maven.plugins</groupId>
41         <artifactId>maven-jar-plugin</artifactId>
42         <executions>
43           <execution>
44             <id>original</id>
45             <configuration>
46               <skip>false</skip>
47             </configuration>
48           </execution>
49         </executions>
50       </plugin>
51       <plugin>
52         <groupId>org.jacoco</groupId>
53         <artifactId>jacoco-maven-plugin</artifactId>
54       </plugin>
55       <plugin>
56         <groupId>org.apache.maven.plugins</groupId>
57         <artifactId>maven-dependency-plugin</artifactId>
58         <executions>
59           <execution>
60             <id>extract-docker-file</id>
61           </execution>
62         </executions>
63       </plugin>
64       <plugin>
65         <groupId>io.fabric8</groupId>
66         <artifactId>docker-maven-plugin</artifactId>
67         <executions>
68           <execution>
69             <id>start</id>
70           </execution>
71         </executions>
72       </plugin>
73       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-surefire-plugin</artifactId>
76         <executions>
77           <execution>
78             <id>default-test</id>
79             <goals>
80               <goal>test</goal>
81             </goals>
82             <configuration>
83               <includes>
84                 <include>**/AllTestsTestSuite.java</include>
85               </includes>
86               <parallel>suites</parallel>
87             </configuration>
88           </execution>
89         </executions>
90       </plugin>
91     </plugins>
92   </build>
93   <dependencyManagement>
94     <dependencies>
95       <dependency>
96         <!-- Import dependency management from Spring Boot -->
97         <groupId>org.springframework.boot</groupId>
98         <artifactId>spring-boot-dependencies</artifactId>
99         <version>${springboot.version}</version>
100         <type>pom</type>
101         <scope>import</scope>
102       </dependency>
103     </dependencies>
104   </dependencyManagement>
105
106   <dependencies>
107     <dependency>
108       <groupId>org.springframework.boot</groupId>
109       <artifactId>spring-boot-starter-web</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>io.swagger</groupId>
113       <artifactId>swagger-jersey2-jaxrs</artifactId>
114       <version>1.5.16</version>
115     </dependency>
116     <dependency>
117       <groupId>org.springframework.boot</groupId>
118       <artifactId>spring-boot-starter-actuator</artifactId>
119     </dependency>
120     <dependency>
121       <groupId>org.springframework.boot</groupId>
122       <artifactId>spring-boot-starter-test</artifactId>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>org.onap.so.adapters</groupId>
127       <artifactId>mso-adapter-utils</artifactId>
128       <version>${project.version}</version>
129     </dependency>
130     <dependency>
131       <groupId>org.apache.cxf</groupId>
132       <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
133       <version>${cxf.version}</version>
134     </dependency>
135     <dependency>
136       <groupId>org.apache.cxf</groupId>
137       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
138       <version>${cxf.version}</version>
139     </dependency>
140     <dependency>
141       <groupId>org.apache.cxf</groupId>
142       <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
143       <version>${cxf.version}</version>
144     </dependency>
145     <dependency>
146       <groupId>org.springframework.boot</groupId>
147       <artifactId>spring-boot-configuration-processor</artifactId>
148       <optional>true</optional>
149     </dependency>
150     <dependency>
151       <groupId>org.onap.so.adapters</groupId>
152       <artifactId>mso-adapters-rest-interface</artifactId>
153       <version>${project.version}</version>
154     </dependency>
155     <dependency>
156       <groupId>org.glassfish</groupId>
157       <artifactId>javax.json</artifactId>
158       <version>1.0.4</version>
159       <scope>test</scope>
160     </dependency>
161     <dependency>
162       <groupId>io.micrometer</groupId>
163       <artifactId>micrometer-core</artifactId>
164     </dependency>
165     <dependency>
166       <groupId>io.micrometer</groupId>
167       <artifactId>micrometer-registry-prometheus</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>org.onap.so</groupId>
171       <artifactId>cxf-logging</artifactId>
172       <version>${project.version}</version>
173     </dependency>
174   </dependencies>
175 </project>