blob: 66fbc370d1bee09d98a3183337edf8fd506cd16e [file] [log] [blame]
MukeshKumar1d9546b2020-08-11 09:55:46 +01001<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.7.1-SNAPSHOT</version>
8 </parent>
9 <artifactId>so-etsi-nfvo-ns-lcm-application</artifactId>
10 <name>SO ETSI NFVO NS LCM Application</name>
waqas.ikram5cb70ec2020-08-14 13:01:59 +010011
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>
MukeshKumar1d9546b2020-08-11 09:55:46 +010066</project>