blob: 4bb8d8ce935a5a0ddc3dbf78e576330bccdcf33f [file] [log] [blame]
waqas.ikram4f974fb2022-03-23 14:42:41 +00001<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.so-cnfm.lcm</groupId>
6 <artifactId>so-cnfm-lcm</artifactId>
7 <version>1.9.0-SNAPSHOT</version>
8 </parent>
9 <artifactId>so-cnfm-lcm-bpmn-flows</artifactId>
10 <name>SO CNFM LCM BPMN Flows</name>
11
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
34 <dependencies>
35 <dependency>
36 <groupId>org.onap.so.so-cnfm.lcm</groupId>
37 <artifactId>so-cnfm-lcm-api</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.onap.so.so-cnfm.lcm</groupId>
42 <artifactId>so-cnfm-lcm-database-service</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.onap.so</groupId>
47 <artifactId>aai-client</artifactId>
48 <version>${so-core-version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.onap.aai.schema-service</groupId>
52 <artifactId>aai-schema</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>org.camunda.bpm.springboot</groupId>
56 <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
57 <exclusions>
58 <exclusion>
59 <groupId>org.camunda.bpmn</groupId>
60 <artifactId>camunda-engine-rest-core</artifactId>
61 </exclusion>
62 </exclusions>
63 </dependency>
64 <dependency>
65 <groupId>org.yaml</groupId>
66 <artifactId>snakeyaml</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>com.shazam</groupId>
70 <artifactId>shazamcrest</artifactId>
71 <version>${snakeyaml-version}</version>
72 <exclusions>
73 <exclusion>
74 <groupId>com.google.guava</groupId>
75 <artifactId>guava</artifactId>
76 </exclusion>
77 <exclusion>
78 <groupId>org.apache.commons</groupId>
79 <artifactId>commons-lang3</artifactId>
80 </exclusion>
81 <exclusion>
82 <groupId>com.vaadin.external.google</groupId>
83 <artifactId>android-json</artifactId>
84 </exclusion>
85 </exclusions>
86 </dependency>
87 <dependency>
88 <groupId>com.h2database</groupId>
89 <artifactId>h2</artifactId>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.hamcrest</groupId>
94 <artifactId>hamcrest</artifactId>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>nl.jqno.equalsverifier</groupId>
99 <artifactId>equalsverifier</artifactId>
100 <version>${equalsverifier-version}</version>
101 <scope>test</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.springframework.cloud</groupId>
105 <artifactId>spring-cloud-contract-wiremock</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>org.springframework.boot</groupId>
109 <artifactId>spring-boot-starter-test</artifactId>
110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.onap.so</groupId>
114 <artifactId>common</artifactId>
115 <version>${so-core-version}</version>
116 <exclusions>
117 <exclusion>
118 <groupId>log4j</groupId>
119 <artifactId>log4j</artifactId>
120 </exclusion>
121 <exclusion>
122 <groupId>org.apache.tomcat</groupId>
123 <artifactId>tomcat-catalina</artifactId>
124 </exclusion>
125 </exclusions>
126 </dependency>
waqas.ikramedcae722022-07-12 18:34:54 +0100127 <dependency>
128 <groupId>io.kubernetes</groupId>
129 <artifactId>client-java</artifactId>
130 <version>${kubernetes-client-version}</version>
131 <exclusions>
132 <exclusion>
133 <groupId>org.jetbrains.kotlin</groupId>
134 <artifactId>kotlin-stdlib-common</artifactId>
135 </exclusion>
136 </exclusions>
137 </dependency>
138 <dependency>
139 <groupId>org.jetbrains.kotlin</groupId>
140 <artifactId>kotlin-stdlib</artifactId>
141 <version>${kotlin-stdlib-version}</version>
142 </dependency>
waqas.ikram4f974fb2022-03-23 14:42:41 +0000143 </dependencies>
144</project>