Merge "update camunda and spring to latest versions"
[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.8.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     <pluginManagement>
20       <plugins>
21         <plugin>
22           <groupId>org.eclipse.m2e</groupId>
23           <artifactId>lifecycle-mapping</artifactId>
24           <version>1.0.0</version>
25           <configuration>
26             <lifecycleMappingMetadata>
27               <pluginExecutions>
28                 <pluginExecution>
29                   <pluginExecutionFilter>
30                     <groupId>org.apache.maven.plugins</groupId>
31                     <artifactId>maven-dependency-plugin</artifactId>
32                     <versionRange>[1.0.0,)</versionRange>
33                     <goals>
34                       <goal>unpack</goal>
35                     </goals>
36                   </pluginExecutionFilter>
37                   <action>
38                     <execute />
39                   </action>
40                 </pluginExecution>
41               </pluginExecutions>
42             </lifecycleMappingMetadata>
43           </configuration>
44         </plugin>
45       </plugins>
46     </pluginManagement>
47     <plugins>
48       <plugin>
49         <groupId>org.apache.cxf</groupId>
50         <artifactId>cxf-codegen-plugin</artifactId>
51         <version>2.5.2</version>
52       </plugin>
53       <plugin>
54         <groupId>org.springframework.boot</groupId>
55         <artifactId>spring-boot-maven-plugin</artifactId>
56         <configuration>
57           <mainClass>org.onap.so.adapters.sdnc.SDNCAdapterApplication</mainClass>
58         </configuration>
59         <executions>
60           <execution>
61             <goals>
62               <goal>repackage</goal>
63             </goals>
64           </execution>
65         </executions>
66       </plugin>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-jar-plugin</artifactId>
70         <executions>
71           <execution>
72             <id>original</id>
73             <phase>package</phase>
74           </execution>
75         </executions>
76       </plugin>
77       <plugin>
78         <groupId>org.jacoco</groupId>
79         <artifactId>jacoco-maven-plugin</artifactId>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-dependency-plugin</artifactId>
84         <executions>
85           <execution>
86             <id>extract-docker-file</id>
87             <configuration>
88               <skip>false</skip>
89             </configuration>
90           </execution>
91         </executions>
92       </plugin>
93       <plugin>
94         <groupId>io.fabric8</groupId>
95         <artifactId>docker-maven-plugin</artifactId>
96         <executions>
97           <execution>
98             <id>start</id>
99           </execution>
100         </executions>
101       </plugin>
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-surefire-plugin</artifactId>
105         <executions>
106           <execution>
107             <id>default-test</id>
108             <goals>
109               <goal>test</goal>
110             </goals>
111             <configuration>
112               <includes>
113                 <include>**/AllTestsTestSuite.java</include>
114               </includes>
115               <parallel>suites</parallel>
116             </configuration>
117           </execution>
118         </executions>
119       </plugin>
120     </plugins>
121   </build>
122   <dependencyManagement>
123     <dependencies>
124       <dependency>
125         <!-- Import dependency management from Spring Boot -->
126         <groupId>org.springframework.boot</groupId>
127         <artifactId>spring-boot-dependencies</artifactId>
128         <version>${springboot.version}</version>
129         <type>pom</type>
130         <scope>import</scope>
131       </dependency>
132     </dependencies>
133   </dependencyManagement>
134   <dependencies>
135     <dependency>
136       <groupId>io.swagger</groupId>
137       <artifactId>swagger-jersey2-jaxrs</artifactId>
138       <version>1.5.16</version>
139     </dependency>
140     <dependency>
141       <groupId>org.springframework.boot</groupId>
142       <artifactId>spring-boot-starter-test</artifactId>
143       <scope>test</scope>
144     </dependency>
145     <dependency>
146       <groupId>org.springframework.boot</groupId>
147       <artifactId>spring-boot-starter-validation</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>org.onap.so.adapters</groupId>
151       <artifactId>mso-adapter-utils</artifactId>
152       <version>${project.version}</version>
153     </dependency>
154     <dependency>
155       <groupId>org.apache.cxf</groupId>
156       <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
157     </dependency>
158     <dependency>
159       <groupId>org.apache.cxf</groupId>
160       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
161     </dependency>
162     <dependency>
163       <groupId>org.apache.cxf</groupId>
164       <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
165     </dependency>
166     <dependency>
167       <groupId>org.springframework.boot</groupId>
168       <artifactId>spring-boot-configuration-processor</artifactId>
169       <optional>true</optional>
170     </dependency>
171     <dependency>
172       <groupId>org.onap.so.adapters</groupId>
173       <artifactId>mso-adapters-rest-interface</artifactId>
174       <version>${project.version}</version>
175     </dependency>
176     <dependency>
177       <groupId>org.glassfish</groupId>
178       <artifactId>javax.json</artifactId>
179       <version>1.0.4</version>
180       <scope>test</scope>
181     </dependency>
182     <dependency>
183       <groupId>io.micrometer</groupId>
184       <artifactId>micrometer-registry-prometheus</artifactId>
185     </dependency>
186     <dependency>
187       <groupId>org.onap.so</groupId>
188       <artifactId>cxf-logging</artifactId>
189       <version>${project.version}</version>
190     </dependency>
191   </dependencies>
192 </project>