Merge "Removing so-monitoring module"
[so.git] / so-etsi-nfvo / so-etsi-nfvo-ns-lcm / so-etsi-nfvo-ns-lcm-application / 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.onap.so.etsi.nfvo</groupId>
6     <artifactId>so-etsi-nfvo-ns-lcm</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>so-etsi-nfvo-ns-lcm-application</artifactId>
10   <name>SO ETSI NFVO NS LCM Application</name>
11
12
13   <build>
14     <finalName>${project.artifactId}-${project.version}</finalName>
15     <plugins>
16       <plugin>
17         <groupId>org.springframework.boot</groupId>
18         <artifactId>spring-boot-maven-plugin</artifactId>
19         <configuration>
20           <mainClass>org.onap.so.etsi.nfvo.ns.lcm.app.Application</mainClass>
21         </configuration>
22         <executions>
23           <execution>
24             <goals>
25               <goal>repackage</goal>
26             </goals>
27           </execution>
28         </executions>
29       </plugin>
30       <plugin>
31         <groupId>org.apache.maven.plugins</groupId>
32         <artifactId>maven-jar-plugin</artifactId>
33         <executions>
34           <execution>
35             <id>original</id>
36           </execution>
37         </executions>
38       </plugin>
39       <plugin>
40         <groupId>org.jacoco</groupId>
41         <artifactId>jacoco-maven-plugin</artifactId>
42       </plugin>
43       <plugin>
44         <groupId>org.apache.maven.plugins</groupId>
45         <artifactId>maven-surefire-plugin</artifactId>
46         <configuration>
47           <systemPropertyVariables>
48             <so.log.level>DEBUG</so.log.level>
49           </systemPropertyVariables>
50           <rerunFailingTestsCount>2</rerunFailingTestsCount>
51           <parallel>suites</parallel>
52           <useUnlimitedThreads>false</useUnlimitedThreads>
53           <threadCount>1</threadCount>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58
59   <dependencies>
60     <dependency>
61       <groupId>org.onap.so.etsi.nfvo</groupId>
62       <artifactId>so-etsi-nfvo-ns-lcm-service</artifactId>
63       <version>${project.version}</version>
64     </dependency>
65   </dependencies>
66 </project>