Merge "Added scriptName for deallocation of NSSI."
[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       <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             <configuration>
74               <skip>false</skip>
75             </configuration>
76           </execution>
77         </executions>
78       </plugin>
79       <plugin>
80         <groupId>org.jacoco</groupId>
81         <artifactId>jacoco-maven-plugin</artifactId>
82       </plugin>
83       <plugin>
84         <groupId>org.apache.maven.plugins</groupId>
85         <artifactId>maven-dependency-plugin</artifactId>
86         <executions>
87           <execution>
88             <id>extract-docker-file</id>
89           </execution>
90         </executions>
91       </plugin>
92       <plugin>
93         <groupId>io.fabric8</groupId>
94         <artifactId>docker-maven-plugin</artifactId>
95         <executions>
96           <execution>
97             <id>start</id>
98           </execution>
99         </executions>
100       </plugin>
101       <plugin>
102         <groupId>org.apache.maven.plugins</groupId>
103         <artifactId>maven-surefire-plugin</artifactId>
104         <executions>
105           <execution>
106             <id>default-test</id>
107             <goals>
108               <goal>test</goal>
109             </goals>
110             <configuration>
111               <includes>
112                 <include>**/AllTestsTestSuite.java</include>
113               </includes>
114               <parallel>suites</parallel>
115             </configuration>
116           </execution>
117         </executions>
118       </plugin>
119     </plugins>
120   </build>
121   <dependencyManagement>
122     <dependencies>
123       <dependency>
124         <!-- Import dependency management from Spring Boot -->
125         <groupId>org.springframework.boot</groupId>
126         <artifactId>spring-boot-dependencies</artifactId>
127         <version>${springboot.version}</version>
128         <type>pom</type>
129         <scope>import</scope>
130       </dependency>
131     </dependencies>
132   </dependencyManagement>
133
134   <dependencies>
135     <dependency>
136       <groupId>org.springframework.boot</groupId>
137       <artifactId>spring-boot-starter-web</artifactId>
138     </dependency>
139     <dependency>
140       <groupId>io.swagger</groupId>
141       <artifactId>swagger-jersey2-jaxrs</artifactId>
142       <version>1.5.16</version>
143     </dependency>
144     <dependency>
145       <groupId>org.springframework.boot</groupId>
146       <artifactId>spring-boot-starter-actuator</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>org.springframework.boot</groupId>
150       <artifactId>spring-boot-starter-test</artifactId>
151       <scope>test</scope>
152     </dependency>
153     <dependency>
154       <groupId>org.onap.so.adapters</groupId>
155       <artifactId>mso-adapter-utils</artifactId>
156       <version>${project.version}</version>
157     </dependency>
158     <dependency>
159       <groupId>org.apache.cxf</groupId>
160       <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
161       <version>${cxf.version}</version>
162     </dependency>
163     <dependency>
164       <groupId>org.apache.cxf</groupId>
165       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
166       <version>${cxf.version}</version>
167     </dependency>
168     <dependency>
169       <groupId>org.apache.cxf</groupId>
170       <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
171       <version>${cxf.version}</version>
172     </dependency>
173     <dependency>
174       <groupId>org.springframework.boot</groupId>
175       <artifactId>spring-boot-configuration-processor</artifactId>
176       <optional>true</optional>
177     </dependency>
178     <dependency>
179       <groupId>org.onap.so.adapters</groupId>
180       <artifactId>mso-adapters-rest-interface</artifactId>
181       <version>${project.version}</version>
182     </dependency>
183     <dependency>
184       <groupId>org.glassfish</groupId>
185       <artifactId>javax.json</artifactId>
186       <version>1.0.4</version>
187       <scope>test</scope>
188     </dependency>
189     <dependency>
190       <groupId>io.micrometer</groupId>
191       <artifactId>micrometer-core</artifactId>
192     </dependency>
193     <dependency>
194       <groupId>io.micrometer</groupId>
195       <artifactId>micrometer-registry-prometheus</artifactId>
196     </dependency>
197     <dependency>
198       <groupId>org.onap.so</groupId>
199       <artifactId>cxf-logging</artifactId>
200       <version>${project.version}</version>
201     </dependency>
202   </dependencies>
203 </project>