blob: bf3a50eb98d0b009ca542d4158a78eef81892454 [file] [log] [blame]
waqas.ikrambd591af2023-01-23 11:58:29 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.onap.so.adapters.so-cnf-adapter.so-cnfm.lcm</groupId>
6 <artifactId>so-cnfm-lcm</artifactId>
7 <version>1.9.0-SNAPSHOT</version>
8 </parent>
9
10 <artifactId>so-cnfm-lcm-bpmn-flows</artifactId>
11 <name>SO CNFM LCM BPMN Flows</name>
12
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.jacoco</groupId>
17 <artifactId>jacoco-maven-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-surefire-plugin</artifactId>
22 <configuration>
23 <systemPropertyVariables>
24 <so.log.level>DEBUG</so.log.level>
25 </systemPropertyVariables>
26 <rerunFailingTestsCount>2</rerunFailingTestsCount>
27 <parallel>suites</parallel>
28 <useUnlimitedThreads>false</useUnlimitedThreads>
29 <threadCount>1</threadCount>
30 </configuration>
31 </plugin>
32 </plugins>
33 </build>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.onap.so.adapters.so-cnf-adapter.so-cnfm.lcm</groupId>
38 <artifactId>so-cnfm-lcm-api</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.onap.so.adapters.so-cnf-adapter.so-cnfm.lcm</groupId>
43 <artifactId>so-cnfm-lcm-database-service</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onap.so</groupId>
48 <artifactId>aai-client</artifactId>
49 <version>${so-core-version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.onap.aai.schema-service</groupId>
53 <artifactId>aai-schema</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.camunda.bpm.springboot</groupId>
57 <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
58 <exclusions>
59 <exclusion>
60 <groupId>org.camunda.bpmn</groupId>
61 <artifactId>camunda-engine-rest-core</artifactId>
62 </exclusion>
63 </exclusions>
64 </dependency>
65 <dependency>
66 <groupId>org.yaml</groupId>
67 <artifactId>snakeyaml</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>com.shazam</groupId>
71 <artifactId>shazamcrest</artifactId>
72 <version>${snakeyaml-version}</version>
73 <exclusions>
74 <exclusion>
75 <groupId>com.google.guava</groupId>
76 <artifactId>guava</artifactId>
77 </exclusion>
78 <exclusion>
79 <groupId>org.apache.commons</groupId>
80 <artifactId>commons-lang3</artifactId>
81 </exclusion>
82 <exclusion>
83 <groupId>com.vaadin.external.google</groupId>
84 <artifactId>android-json</artifactId>
85 </exclusion>
86 </exclusions>
87 </dependency>
88 <dependency>
89 <groupId>com.h2database</groupId>
90 <artifactId>h2</artifactId>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.hamcrest</groupId>
95 <artifactId>hamcrest</artifactId>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>nl.jqno.equalsverifier</groupId>
100 <artifactId>equalsverifier</artifactId>
101 <version>${equalsverifier-version}</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.springframework.cloud</groupId>
106 <artifactId>spring-cloud-contract-wiremock</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>org.springframework.boot</groupId>
110 <artifactId>spring-boot-starter-test</artifactId>
111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.onap.so</groupId>
115 <artifactId>common</artifactId>
116 <version>${so-core-version}</version>
117 <exclusions>
118 <exclusion>
119 <groupId>log4j</groupId>
120 <artifactId>log4j</artifactId>
121 </exclusion>
122 <exclusion>
123 <groupId>org.apache.tomcat</groupId>
124 <artifactId>tomcat-catalina</artifactId>
125 </exclusion>
126 </exclusions>
127 </dependency>
128 <dependency>
129 <groupId>io.kubernetes</groupId>
130 <artifactId>client-java</artifactId>
131 <version>${kubernetes-client-version}</version>
132 <exclusions>
133 <exclusion>
134 <groupId>org.jetbrains.kotlin</groupId>
135 <artifactId>kotlin-stdlib-common</artifactId>
136 </exclusion>
137 </exclusions>
138 </dependency>
139 <dependency>
140 <groupId>org.jetbrains.kotlin</groupId>
141 <artifactId>kotlin-stdlib</artifactId>
142 <version>${kotlin-stdlib-version}</version>
143 </dependency>
waqas.ikram6d0b88f2023-02-20 13:28:52 +0000144 <dependency>
145 <groupId>org.mockito</groupId>
146 <artifactId>mockito-inline</artifactId>
147 <scope>test</scope>
148 </dependency>
149
waqas.ikrambd591af2023-01-23 11:58:29 +0000150 </dependencies>
151</project>