blob: f60ed785eccac30d18d6051dc0971b78a0ab9070 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
vasrazf2e43fb2022-03-31 19:05:00 +01003 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
AviZi280f8012017-06-09 02:39:56 +03006
vasrazf2e43fb2022-03-31 19:05:00 +01007 <parent>
8 <groupId>org.openecomp.sdc</groupId>
9 <artifactId>item-rest</artifactId>
MichaelMorris82576922022-08-15 10:45:48 +010010 <version>1.11.7-SNAPSHOT</version>
vasrazf2e43fb2022-03-31 19:05:00 +010011 </parent>
AviZi280f8012017-06-09 02:39:56 +030012
vasrazf2e43fb2022-03-31 19:05:00 +010013 <artifactId>item-rest-services</artifactId>
talig8e9c0652017-12-20 14:30:43 +020014
vasrazf2e43fb2022-03-31 19:05:00 +010015 <dependencies>
16 <dependency>
17 <groupId>org.openecomp.sdc</groupId>
18 <artifactId>openecomp-sdc-item-permissions-manager</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21 <dependency>
22 <groupId>org.openecomp.sdc</groupId>
23 <artifactId>item-rest-types</artifactId>
24 <version>${project.version}</version>
25 </dependency>
26 <dependency>
27 <groupId>org.openecomp.sdc</groupId>
28 <artifactId>openecomp-sdc-common-rest</artifactId>
29 <version>${project.version}</version>
30 </dependency>
31 <dependency>
32 <groupId>org.apache.httpcomponents</groupId>
33 <artifactId>httpclient</artifactId>
34 <version>${http.client.version}</version>
35 <exclusions>
36 <exclusion>
37 <groupId>org.apache.httpcomponents</groupId>
38 <artifactId>httpcore</artifactId>
39 </exclusion>
40 </exclusions>
41 </dependency>
42 <dependency>
43 <groupId>javax.inject</groupId>
44 <artifactId>javax.inject</artifactId>
45 <version>1</version>
46 </dependency>
47 <!-- CXF -->
48 <dependency>
49 <groupId>org.apache.cxf</groupId>
50 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
51 <version>${cxf.version}</version>
52 <exclusions>
53 <exclusion>
54 <groupId>org.jboss.spec.javax.rmi</groupId>
55 <artifactId>jboss-rmi-api_1.0_spec</artifactId>
56 </exclusion>
57 </exclusions>
58 </dependency>
59 <dependency>
60 <groupId>org.openecomp.sdc</groupId>
61 <artifactId>openecomp-sdc-conflict-manager</artifactId>
62 <version>${project.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.springframework</groupId>
66 <artifactId>spring-context</artifactId>
67 <exclusions>
68 <exclusion>
69 <groupId>org.springframework</groupId>
70 <artifactId>spring-expression</artifactId>
71 </exclusion>
72 <exclusion>
73 <groupId>org.springframework</groupId>
74 <artifactId>spring-core</artifactId>
75 </exclusion>
76 </exclusions>
77 </dependency>
78 <dependency>
79 <groupId>com.fasterxml.jackson.core</groupId>
80 <artifactId>jackson-core</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>com.github.tomakehurst</groupId>
84 <artifactId>wiremock-standalone</artifactId>
85 <version>${wire-mock.version}</version>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.projectlombok</groupId>
90 <artifactId>lombok</artifactId>
91 <scope>provided</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.openecomp.sdc.be</groupId>
95 <artifactId>common-be</artifactId>
96 <version>${project.version}</version>
97 <scope>compile</scope>
98 </dependency>
99 </dependencies>
AviZi280f8012017-06-09 02:39:56 +0300100
JulienBe56f99ec2020-06-24 17:31:27 +0200101</project>