blob: e8c0c2378e22ea697ee469d27c81aff3773f3cc8 [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 Landoed64b5e2017-06-09 03:19:04 +0300181 <scope>test</scope>
182 </dependency>
183
Michael Lando451a3402017-02-19 10:28:42 +0200184 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300185 <groupId>org.springframework</groupId>
186 <artifactId>spring-test</artifactId>
187 <version>${spring.version}</version>
188 <scope>test</scope>
189 </dependency>
190
191 <dependency>
192 <groupId>org.aspectj</groupId>
193 <artifactId>aspectjrt</artifactId>
194 <version>${aspectj.version}</version>
195 <scope>test</scope>
196 </dependency>
197
198 <dependency>
199 <groupId>org.aspectj</groupId>
200 <artifactId>aspectjweaver</artifactId>
201 <version>${aspectj.version}</version>
202 <scope>test</scope>
203 </dependency>
204
Michael Lando451a3402017-02-19 10:28:42 +0200205 <dependency>
206 <groupId>org.springframework</groupId>
207 <artifactId>spring-web</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200208 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200209 <scope>test</scope>
210 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300211
Michael Lando451a3402017-02-19 10:28:42 +0200212 <dependency>
213 <groupId>org.springframework</groupId>
214 <artifactId>spring-tx</artifactId>
215 <scope>test</scope>
216 <version>4.0.7.RELEASE</version>
217 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300218
Michael Lando451a3402017-02-19 10:28:42 +0200219 <dependency>
220 <groupId>org.apache.commons</groupId>
221 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300222 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200223 <scope>test</scope>
224 </dependency>
Michael Lando75aacbb2017-07-17 21:12:03 +0300225 <dependency>
226 <groupId>org.powermock</groupId>
227 <artifactId>powermock-module-junit4</artifactId>
228 <version>1.7.0RC4</version>
229 <scope>test</scope>
230 </dependency>
231 <dependency>
232 <groupId>org.powermock</groupId>
233 <artifactId>powermock-api-mockito-common</artifactId>
234 <version>1.6.5</version>
235 <scope>test</scope>
236 </dependency>
237 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200238 <build>
239 <plugins>
240 <plugin>
241 <groupId>org.apache.maven.plugins</groupId>
242 <artifactId>maven-deploy-plugin</artifactId>
243 <version>2.7</version>
244 <configuration>
245 <skip>true</skip>
246 </configuration>
247 </plugin>
248 </plugins>
249 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200250</project>