Update version to 1.13.6-SNAPSHOT
[sdc.git] / openecomp-be / lib / openecomp-core-lib / openecomp-nosqldb-lib / openecomp-nosqldb-api / pom.xml
1 <!--
2   ~ Copyright © 2016-2018 European Support Limited
3   ~
4   ~ Licensed under the Apache License, Version 2.0 (the "License");
5   ~ you may not use this file except in compliance with the License.
6   ~ You may obtain a copy of the License at
7   ~
8   ~      http://www.apache.org/licenses/LICENSE-2.0
9   ~
10   ~ Unless required by applicable law or agreed to in writing, software
11   ~ distributed under the License is distributed on an "AS IS" BASIS,
12   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   ~ See the License for the specific language governing permissions and
14   ~ limitations under the License.
15   -->
16
17 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19     <modelVersion>4.0.0</modelVersion>
20
21     <name>openecomp-nosqldb-api</name>
22     <artifactId>openecomp-nosqldb-api</artifactId>
23
24     <parent>
25         <artifactId>openecomp-nosqldb-lib</artifactId>
26         <groupId>org.openecomp.sdc.core</groupId>
27         <version>1.13.6-SNAPSHOT</version>
28     </parent>
29
30     <dependencies>
31         <dependency>
32             <groupId>org.openecomp.sdc.core</groupId>
33             <artifactId>openecomp-facade-api</artifactId>
34             <version>${project.version}</version>
35         </dependency>
36         <dependency>
37             <groupId>com.datastax.cassandra</groupId>
38             <artifactId>cassandra-driver-core</artifactId>
39             <version>${datastax.cassandra.version}</version>
40             <exclusions>
41                 <exclusion>
42                     <groupId>com.github.jnr</groupId>
43                     <artifactId>jnr-posix</artifactId>
44                 </exclusion>
45             </exclusions>
46         </dependency>
47         <dependency>
48             <groupId>com.datastax.cassandra</groupId>
49             <artifactId>cassandra-driver-mapping</artifactId>
50             <version>${datastax.cassandra.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>com.datastax.cassandra</groupId>
54             <artifactId>cassandra-driver-extras</artifactId>
55             <version>${datastax.cassandra.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.openecomp.sdc.core</groupId>
59             <artifactId>openecomp-facade-core</artifactId>
60             <version>${project.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.openecomp.sdc</groupId>
64             <artifactId>openecomp-sdc-logging-core</artifactId>
65             <version>${project.version}</version>
66             <scope>runtime</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.projectlombok</groupId>
70             <artifactId>lombok</artifactId>
71             <scope>provided</scope>
72         </dependency>
73     </dependencies>
74
75
76 </project>