blob: 8b0786f71dbd3b89d300ae61b45510d3f0e87a95 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4 <modelVersion>4.0.0</modelVersion>
5
6 <groupId>org.openecomp.sdc.be</groupId>
7 <artifactId>catalog-model</artifactId>
8
Michael Lando451a3402017-02-19 10:28:42 +02009 <parent>
10 <groupId>org.openecomp.sdc</groupId>
11 <artifactId>sdc-main</artifactId>
Michael Lando0ad3c802017-09-19 16:32:59 +030012 <version>1.2.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020013 </parent>
Michael Lando451a3402017-02-19 10:28:42 +020014
Tal Gitelman51d50f02017-12-10 18:55:03 +020015 <dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030016 <!-- Common of SDC -->
Michael Landoc34b77c2017-02-28 19:03:11 +020017 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030018 <groupId>org.openecomp.sdc</groupId>
19 <artifactId>common-app-api</artifactId>
20 <version>${project.version}</version>
Michael Landoc34b77c2017-02-28 19:03:11 +020021 <scope>provided</scope>
22 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030023
Michael Lando0de99c22017-02-28 10:54:57 +020024 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030025 <groupId>org.openecomp.sdc.be</groupId>
26 <artifactId>common-be</artifactId>
27 <version>${project.version}</version>
Michael Lando0de99c22017-02-28 10:54:57 +020028 <scope>provided</scope>
29 </dependency>
30
Michael Lando2e0ef972017-02-28 01:44:21 +020031 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030032 <groupId>ch.qos.logback</groupId>
33 <artifactId>logback-classic</artifactId>
34 <version>${logback.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020035 <scope>provided</scope>
36 </dependency>
37
38 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030039 <groupId>ch.qos.logback</groupId>
40 <artifactId>logback-core</artifactId>
41 <version>${logback.version}</version>
42 <scope>provided</scope>
43 </dependency>
44
45 <!-- catalog dao -->
46 <dependency>
47 <groupId>org.openecomp.sdc.be</groupId>
48 <artifactId>catalog-dao</artifactId>
49 <version>${project.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020050 <scope>provided</scope>
51 </dependency>
52
Michael Landoc0ac0152017-02-27 23:48:43 +020053 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030054 <groupId>com.google.guava</groupId>
55 <artifactId>guava</artifactId>
56 <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
Michael Landoc0ac0152017-02-27 23:48:43 +020057 <scope>provided</scope>
58 </dependency>
59
60 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030061 <groupId>org.functionaljava</groupId>
62 <artifactId>functionaljava</artifactId>
63 <version>${functionaljava.version}</version>
64 <scope>provided</scope>
65 </dependency>
66
67 <!-- spring -->
68 <dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020069 <groupId>org.springframework</groupId>
70 <artifactId>spring-beans</artifactId>
71 <version>${spring.version}</version>
72 <scope>provided</scope>
73 </dependency>
74
75 <dependency>
76 <groupId>org.springframework</groupId>
77 <artifactId>spring-context</artifactId>
78 <version>${spring.version}</version>
79 <scope>provided</scope>
80 </dependency>
81
82 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030083 <groupId>javax.validation</groupId>
84 <artifactId>validation-api</artifactId>
85 <version>1.1.0.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020086 </dependency>
87
88 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030089 <groupId>org.hibernate</groupId>
90 <artifactId>hibernate-validator</artifactId>
91 <version>5.0.1.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020092 </dependency>
93
Michael Landoed64b5e2017-06-09 03:19:04 +030094 <!-- Gson -->
Michael Landoc0ac0152017-02-27 23:48:43 +020095 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020096 <groupId>com.google.code.gson</groupId>
97 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030098 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020099 <scope>provided</scope>
100 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300101
102 <!-- TITAN -->
Michael Lando451a3402017-02-19 10:28:42 +0200103 <dependency>
104 <groupId>com.thinkaurelius.titan</groupId>
105 <artifactId>titan-core</artifactId>
106 <version>${titan.version}</version>
107 <scope>provided</scope>
108 <exclusions>
109 <exclusion>
110 <groupId>org.json</groupId>
111 <artifactId>json</artifactId>
112 </exclusion>
113 <exclusion>
114 <artifactId>slf4j-log4j12</artifactId>
115 <groupId>org.slf4j</groupId>
116 </exclusion>
117 </exclusions>
118 </dependency>
119
120 <dependency>
Idan Amit39987c82017-09-13 13:51:41 +0300121 <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
122 <artifactId>sdc-titan-cassandra</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200123 <version>${titan.version}</version>
124 <scope>provided</scope>
125 <exclusions>
126 <exclusion>
127 <artifactId>slf4j-log4j12</artifactId>
128 <groupId>org.slf4j</groupId>
129 </exclusion>
130 </exclusions>
131 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300132 <!-- TITAN END -->
133
134 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200135 <groupId>org.apache.commons</groupId>
136 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200137 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200138 <scope>provided</scope>
139 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300140
141 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +0200142 <dependency>
143 <groupId>org.apache.httpcomponents</groupId>
144 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300145 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200146 <scope>provided</scope>
147 </dependency>
148
149 <dependency>
150 <groupId>org.apache.httpcomponents</groupId>
151 <artifactId>httpcore</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300152 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200153 <scope>provided</scope>
154 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300155
Michael Lando451a3402017-02-19 10:28:42 +0200156 <!-- CASSANDRA -->
157 <dependency>
158 <groupId>com.datastax.cassandra</groupId>
159 <artifactId>cassandra-driver-core</artifactId>
160 <version>${cassandra.driver.version}</version>
161 <scope>provided</scope>
162 </dependency>
163 <dependency>
164 <groupId>com.datastax.cassandra</groupId>
165 <artifactId>cassandra-driver-mapping</artifactId>
166 <version>${cassandra.driver.version}</version>
167 <scope>provided</scope>
168 </dependency>
169 <!-- CASSANDRA END -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300170
Michael Lando451a3402017-02-19 10:28:42 +0200171 <dependency>
172 <groupId>junit</groupId>
173 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300174 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200175 <scope>test</scope>
176 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200177
178 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300179 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200180 <artifactId>mockito-core</artifactId>
Michael Landoce868e62017-12-25 20:07:37 +0200181 <version>${mockito.version}</version>
Michael Landoed64b5e2017-06-09 03:19:04 +0300182 <scope>test</scope>
183 </dependency>
184
Michael Lando451a3402017-02-19 10:28:42 +0200185 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300186 <groupId>org.springframework</groupId>
187 <artifactId>spring-test</artifactId>
188 <version>${spring.version}</version>
189 <scope>test</scope>
190 </dependency>
191
192 <dependency>
193 <groupId>org.aspectj</groupId>
194 <artifactId>aspectjrt</artifactId>
195 <version>${aspectj.version}</version>
196 <scope>test</scope>
197 </dependency>
198
199 <dependency>
200 <groupId>org.aspectj</groupId>
201 <artifactId>aspectjweaver</artifactId>
202 <version>${aspectj.version}</version>
203 <scope>test</scope>
204 </dependency>
205
Michael Lando451a3402017-02-19 10:28:42 +0200206 <dependency>
207 <groupId>org.springframework</groupId>
208 <artifactId>spring-web</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200209 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200210 <scope>test</scope>
211 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300212
Michael Lando451a3402017-02-19 10:28:42 +0200213 <dependency>
214 <groupId>org.springframework</groupId>
215 <artifactId>spring-tx</artifactId>
216 <scope>test</scope>
217 <version>4.0.7.RELEASE</version>
218 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300219
Michael Lando451a3402017-02-19 10:28:42 +0200220 <dependency>
221 <groupId>org.apache.commons</groupId>
222 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300223 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200224 <scope>test</scope>
225 </dependency>
Michael Lando75aacbb2017-07-17 21:12:03 +0300226 <dependency>
227 <groupId>org.powermock</groupId>
228 <artifactId>powermock-module-junit4</artifactId>
229 <version>1.7.0RC4</version>
230 <scope>test</scope>
231 </dependency>
232 <dependency>
233 <groupId>org.powermock</groupId>
234 <artifactId>powermock-api-mockito-common</artifactId>
235 <version>1.6.5</version>
236 <scope>test</scope>
237 </dependency>
238 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200239 <build>
240 <plugins>
241 <plugin>
242 <groupId>org.apache.maven.plugins</groupId>
243 <artifactId>maven-deploy-plugin</artifactId>
244 <version>2.7</version>
245 <configuration>
246 <skip>true</skip>
247 </configuration>
248 </plugin>
249 </plugins>
250 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200251</project>