blob: 66c11f279f5a4da3717cbec72cf73c74ee04c1cb [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-bpmn-flows</artifactId>
10 <name>SO ETSI NFVO NS LCM BPMN Flows</name>
waqas.ikram21a47682020-08-20 09:59:05 +010011
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.jacoco</groupId>
16 <artifactId>jacoco-maven-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-surefire-plugin</artifactId>
21 <configuration>
22 <systemPropertyVariables>
23 <so.log.level>DEBUG</so.log.level>
24 </systemPropertyVariables>
25 <rerunFailingTestsCount>2</rerunFailingTestsCount>
26 <parallel>suites</parallel>
27 <useUnlimitedThreads>false</useUnlimitedThreads>
28 <threadCount>1</threadCount>
29 </configuration>
30 </plugin>
31 </plugins>
32 </build>
33
rope252c78c3e42020-08-31 00:14:37 +010034 <dependencies>
35 <dependency>
36 <groupId>org.onap.so.etsi.nfvo</groupId>
waqas.ikram21a47682020-08-20 09:59:05 +010037 <artifactId>so-etsi-nfvo-ns-lcm-api</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.onap.so.etsi.nfvo</groupId>
rope252c78c3e42020-08-31 00:14:37 +010042 <artifactId>so-etsi-nfvo-ns-lcm-database-service</artifactId>
43 <version>${project.version}</version>
44 </dependency>
waqas.ikram21a47682020-08-20 09:59:05 +010045 <dependency>
46 <groupId>org.onap.so.adapters</groupId>
47 <artifactId>etsi-sol003-pkgm-ext-clients</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.onap.so</groupId>
52 <artifactId>aai-client</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.camunda.bpm.springboot</groupId>
57 <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
58 <version>${camunda.springboot.version}</version>
59 <exclusions>
60 <exclusion>
61 <groupId>org.camunda.bpmn</groupId>
62 <artifactId>camunda-engine-rest-core</artifactId>
63 </exclusion>
64 </exclusions>
65 </dependency>
66 <dependency>
67 <groupId>org.yaml</groupId>
68 <artifactId>snakeyaml</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>com.shazam</groupId>
72 <artifactId>shazamcrest</artifactId>
73 <version>${snakeyaml-version}</version>
74 <exclusions>
75 <exclusion>
76 <groupId>com.google.guava</groupId>
77 <artifactId>guava</artifactId>
78 </exclusion>
79 <exclusion>
80 <groupId>org.apache.commons</groupId>
81 <artifactId>commons-lang3</artifactId>
82 </exclusion>
83 <exclusion>
84 <groupId>com.vaadin.external.google</groupId>
85 <artifactId>android-json</artifactId>
86 </exclusion>
87 </exclusions>
88 </dependency>
89 <dependency>
90 <groupId>com.h2database</groupId>
91 <artifactId>h2</artifactId>
92 <scope>test</scope>
93 </dependency>
rope252c78c3e42020-08-31 00:14:37 +010094 </dependencies>
MukeshKumar1d9546b2020-08-11 09:55:46 +010095</project>