blob: 7a93f6e23a3207cb860b8083bbda44ffeb023cec [file] [log] [blame]
waqas.ikram12bfb7b2020-04-08 15:48:21 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.onap.so.adapters</groupId>
6 <artifactId>etsi-sol003-adapter</artifactId>
seshukm1c8d0202021-02-15 20:35:29 +05307 <version>1.8.0-SNAPSHOT</version>
waqas.ikram12bfb7b2020-04-08 15:48:21 +01008 </parent>
9 <artifactId>etsi-sol003-adapter-application</artifactId>
10 <name>ETSI SOL003 Application Jar</name>
11 <build>
12 <finalName>${project.artifactId}-${project.version}</finalName>
13 <plugins>
14 <plugin>
15 <groupId>org.springframework.boot</groupId>
16 <artifactId>spring-boot-maven-plugin</artifactId>
17 <configuration>
waqas.ikram7511bc22020-05-01 12:30:32 +010018 <mainClass>org.onap.so.adapters.etsisol003adapter.Application</mainClass>
waqas.ikram12bfb7b2020-04-08 15:48:21 +010019 </configuration>
20 <executions>
21 <execution>
22 <goals>
23 <goal>repackage</goal>
24 </goals>
25 </execution>
26 </executions>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-jar-plugin</artifactId>
31 <executions>
32 <execution>
33 <id>original</id>
34 </execution>
35 </executions>
36 </plugin>
37 <plugin>
38 <groupId>org.jacoco</groupId>
39 <artifactId>jacoco-maven-plugin</artifactId>
40 </plugin>
41 <plugin>
42 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-surefire-plugin</artifactId>
44 <configuration>
45 <systemPropertyVariables>
46 <so.log.level>DEBUG</so.log.level>
47 </systemPropertyVariables>
48 <rerunFailingTestsCount>2</rerunFailingTestsCount>
49 <parallel>suites</parallel>
50 <useUnlimitedThreads>false</useUnlimitedThreads>
51 <threadCount>1</threadCount>
52 </configuration>
53 </plugin>
54 </plugins>
55 <resources>
56 <resource>
57 <directory>src/main/resources</directory>
58 <filtering>true</filtering>
59 <excludes>
60 <exclude>**/*.p12</exclude>
61 <exclude>**/*.jks</exclude>
62 </excludes>
63 </resource>
64 <resource>
65 <directory>src/main/resources</directory>
66 <filtering>false</filtering>
67 <includes>
68 <include>**/*.p12</include>
69 <include>**/*.jks</include>
70 </includes>
71 </resource>
72 </resources>
73 </build>
74 <dependencies>
75 <dependency>
76 <groupId>org.onap.so.adapters</groupId>
77 <artifactId>etsi-sol003-lcm-adapter</artifactId>
78 <version>${project.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>org.onap.so.adapters</groupId>
waqas.ikram7ceffbb2020-05-01 18:26:26 +010082 <artifactId>etsi-sol003-pkgm-adapter</artifactId>
waqas.ikram12bfb7b2020-04-08 15:48:21 +010083 <version>${project.version}</version>
84 </dependency>
85 </dependencies>
86</project>