blob: f76b37789807679121a88c9b2f5cb60065772101 [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"
19 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">
21
22 <modelVersion>4.0.0</modelVersion>
23
24 <artifactId>zusammen-lib</artifactId>
25 <parent>
26 <groupId>org.onap.sdc.common</groupId>
27 <artifactId>sdc-be-common</artifactId>
28 <version>1.0.0-SNAPSHOT</version>
29 </parent>
30
31 <properties>
32 <zusammen.version>1.0.1</zusammen.version>
33 <zusammen-state-store.version>1.0.1</zusammen-state-store.version>
34 <zusammen-collaboration-store.version>1.0.1</zusammen-collaboration-store.version>
35 <zusammen-index-store.version>1.0.0</zusammen-index-store.version>
36 </properties>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.springframework.boot</groupId>
41 <artifactId>spring-boot-starter-data-cassandra</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>com.amdocs.zusammen</groupId>
45 <artifactId>zusammen-datatypes</artifactId>
46 <version>${zusammen.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>com.amdocs.zusammen</groupId>
50 <artifactId>zusammen-adaptor-inbound-api</artifactId>
51 <version>${zusammen.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>com.amdocs.zusammen</groupId>
55 <artifactId>zusammen-adaptor-inbound-impl</artifactId>
56 <version>${zusammen.version}</version>
57 <scope>runtime</scope>
58 </dependency>
59 <dependency>
60 <groupId>com.amdocs.zusammen.plugin</groupId>
61 <artifactId>zusammen-collaboration-cassandra-plugin</artifactId>
62 <version>${zusammen-collaboration-store.version}</version>
63 <scope>runtime</scope>
64 </dependency>
65 <dependency>
66 <groupId>com.amdocs.zusammen.plugin</groupId>
67 <artifactId>zusammen-search-index-empty-plugin</artifactId>
68 <version>${zusammen-index-store.version}</version>
69 <scope>runtime</scope>
70 </dependency>
71 </dependencies>
72</project>
73