blob: 32b22340b3f885005160c9e3d685d688e5c9aa9c [file] [log] [blame]
vempo2da911f2018-11-01 20:27:39 +02001<!--
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
AviZi280f8012017-06-09 02:39:56 +030017<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
vasraza36531c2020-04-29 18:39:35 +010018 xmlns="http://maven.apache.org/POM/4.0.0"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
Michael Landof5f13c42017-02-19 12:35:04 +020021
vasraza36531c2020-04-29 18:39:35 +010022 <name>openecomp-sdc-versioning-api</name>
23 <artifactId>openecomp-sdc-versioning-api</artifactId>
24 <parent>
25 <groupId>org.openecomp.sdc</groupId>
JulienBeb485c372020-10-28 11:50:25 -040026 <artifactId>openecomp-sdc-versioning-lib</artifactId>
MichaelMorris23d80342022-02-09 14:08:27 +000027 <version>1.10.2-SNAPSHOT</version>
vasraza36531c2020-04-29 18:39:35 +010028 </parent>
Michael Landof5f13c42017-02-19 12:35:04 +020029
vasraza36531c2020-04-29 18:39:35 +010030 <dependencies>
31 <dependency>
32 <groupId>org.projectlombok</groupId>
33 <artifactId>lombok</artifactId>
34 <scope>provided</scope>
35 </dependency>
36 <dependency>
37 <groupId>com.datastax.cassandra</groupId>
38 <artifactId>cassandra-driver-extras</artifactId>
39 <version>${datastax.cassandra.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.openecomp.sdc.core</groupId>
43 <artifactId>openecomp-session-lib</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.openecomp.sdc</groupId>
48 <artifactId>openecomp-item-permissions-core</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.openecomp.sdc</groupId>
53 <artifactId>openecomp-item-permissions-api</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>org.openecomp.sdc.core</groupId>
58 <artifactId>openecomp-facade-core</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.openecomp.sdc.core</groupId>
63 <artifactId>openecomp-facade-api</artifactId>
64 <version>${project.version}</version>
65 </dependency>
66 <dependency>
67 <groupId>org.openecomp.sdc.core</groupId>
68 <artifactId>openecomp-nosqldb-core</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
vasraz66af7c52021-07-20 23:22:45 +010072 <groupId>org.hibernate.validator</groupId>
vasraza36531c2020-04-29 18:39:35 +010073 <artifactId>hibernate-validator</artifactId>
74 <version>${hibernate.validator.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>javax.el</groupId>
78 <artifactId>javax.el-api</artifactId>
79 <version>${javax.el-api.version}</version>
vasraz66af7c52021-07-20 23:22:45 +010080 <scope>provided</scope>
vasraza36531c2020-04-29 18:39:35 +010081 </dependency>
82 <dependency>
83 <groupId>org.glassfish.web</groupId>
84 <artifactId>javax.el</artifactId>
85 <version>${javax.el.version}</version>
86 </dependency>
87 <dependency>
vasraza36531c2020-04-29 18:39:35 +010088 <groupId>org.openecomp.sdc</groupId>
89 <artifactId>openecomp-sdc-logging-core</artifactId>
90 <version>${project.version}</version>
91 <scope>runtime</scope>
92 </dependency>
93 </dependencies>
AviZi280f8012017-06-09 02:39:56 +030094</project>