blob: 2fc4b183a0ec95f06bdde216ba84fcb76d251ad6 [file] [log] [blame]
talig2c78e552019-08-05 16:53:44 +03001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2019 European Support Limited
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17
18<project xmlns="http://maven.apache.org/POM/4.0.0"
vasraza3333ec2021-07-19 20:48:41 +010019 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
talig2c78e552019-08-05 16:53:44 +030021
vasraza3333ec2021-07-19 20:48:41 +010022 <modelVersion>4.0.0</modelVersion>
talig2c78e552019-08-05 16:53:44 +030023
vasraza3333ec2021-07-19 20:48:41 +010024 <artifactId>zusammen-lib</artifactId>
25 <name>zusammen-lib</name>
26 <parent>
27 <groupId>org.onap.sdc.sdc-be-common</groupId>
28 <artifactId>sdc-be-common-parent</artifactId>
vasraz40c5aa12022-09-06 18:40:24 +010029 <version>1.7.1-SNAPSHOT</version>
vasraza3333ec2021-07-19 20:48:41 +010030 </parent>
talig2c78e552019-08-05 16:53:44 +030031
vasraza3333ec2021-07-19 20:48:41 +010032 <properties>
33 <zusammen.version>1.0.2</zusammen.version>
vasraza3333ec2021-07-19 20:48:41 +010034 <zusammen-collaboration-store.version>1.0.3</zusammen-collaboration-store.version>
35 <zusammen-index-store.version>1.0.0</zusammen-index-store.version>
36 </properties>
talig2c78e552019-08-05 16:53:44 +030037
vasraza3333ec2021-07-19 20:48:41 +010038 <dependencies>
39 <dependency>
40 <groupId>org.springframework.boot</groupId>
41 <artifactId>spring-boot-starter-data-cassandra</artifactId>
42 <exclusions>
43 <exclusion>
44 <groupId>io.netty</groupId>
45 <artifactId>netty-codec</artifactId>
46 </exclusion>
47 </exclusions>
48 </dependency>
49 <dependency>
50 <groupId>com.amdocs.zusammen</groupId>
51 <artifactId>zusammen-datatypes</artifactId>
52 <version>${zusammen.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>com.amdocs.zusammen</groupId>
56 <artifactId>zusammen-adaptor-inbound-api</artifactId>
57 <version>${zusammen.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>com.amdocs.zusammen</groupId>
61 <artifactId>zusammen-adaptor-inbound-impl</artifactId>
62 <version>${zusammen.version}</version>
63 <scope>runtime</scope>
64 </dependency>
65 <dependency>
66 <groupId>com.amdocs.zusammen.plugin</groupId>
67 <artifactId>zusammen-collaboration-cassandra-plugin</artifactId>
68 <version>${zusammen-collaboration-store.version}</version>
69 <scope>runtime</scope>
70 </dependency>
71 <dependency>
72 <groupId>com.amdocs.zusammen.plugin</groupId>
73 <artifactId>zusammen-search-index-empty-plugin</artifactId>
74 <version>${zusammen-index-store.version}</version>
75 <scope>runtime</scope>
76 </dependency>
77 </dependencies>
talig2c78e552019-08-05 16:53:44 +030078</project>
79