blob: 8d9a7c092d5f6fdea029835c79d0556ac77288c7 [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
15 <dependencies>
Michael Lando2e0ef972017-02-28 01:44:21 +020016
Michael Landoed64b5e2017-06-09 03:19:04 +030017 <!-- Common of SDC -->
Michael Landoc34b77c2017-02-28 19:03:11 +020018 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030019 <groupId>org.openecomp.sdc</groupId>
20 <artifactId>common-app-api</artifactId>
21 <version>${project.version}</version>
Michael Landoc34b77c2017-02-28 19:03:11 +020022 <scope>provided</scope>
23 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030024
Michael Lando0de99c22017-02-28 10:54:57 +020025 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030026 <groupId>org.openecomp.sdc.be</groupId>
27 <artifactId>common-be</artifactId>
28 <version>${project.version}</version>
Michael Lando0de99c22017-02-28 10:54:57 +020029 <scope>provided</scope>
30 </dependency>
31
Michael Lando2e0ef972017-02-28 01:44:21 +020032 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030033 <groupId>ch.qos.logback</groupId>
34 <artifactId>logback-classic</artifactId>
35 <version>${logback.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020036 <scope>provided</scope>
37 </dependency>
38
39 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030040 <groupId>ch.qos.logback</groupId>
41 <artifactId>logback-core</artifactId>
42 <version>${logback.version}</version>
43 <scope>provided</scope>
44 </dependency>
45
46 <!-- catalog dao -->
47 <dependency>
48 <groupId>org.openecomp.sdc.be</groupId>
49 <artifactId>catalog-dao</artifactId>
50 <version>${project.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020051 <scope>provided</scope>
52 </dependency>
53
Michael Landoc0ac0152017-02-27 23:48:43 +020054 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030055 <groupId>com.google.guava</groupId>
56 <artifactId>guava</artifactId>
57 <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
Michael Landoc0ac0152017-02-27 23:48:43 +020058 <scope>provided</scope>
59 </dependency>
60
61 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030062 <groupId>org.functionaljava</groupId>
63 <artifactId>functionaljava</artifactId>
64 <version>${functionaljava.version}</version>
65 <scope>provided</scope>
66 </dependency>
67
68 <!-- spring -->
69 <dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020070 <groupId>org.springframework</groupId>
71 <artifactId>spring-beans</artifactId>
72 <version>${spring.version}</version>
73 <scope>provided</scope>
74 </dependency>
75
76 <dependency>
77 <groupId>org.springframework</groupId>
78 <artifactId>spring-context</artifactId>
79 <version>${spring.version}</version>
80 <scope>provided</scope>
81 </dependency>
82
83 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030084 <groupId>javax.validation</groupId>
85 <artifactId>validation-api</artifactId>
86 <version>1.1.0.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020087 </dependency>
88
89 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030090 <groupId>org.hibernate</groupId>
91 <artifactId>hibernate-validator</artifactId>
92 <version>5.0.1.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020093 </dependency>
94
Michael Landoed64b5e2017-06-09 03:19:04 +030095 <!-- Gson -->
Michael Landoc0ac0152017-02-27 23:48:43 +020096 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020097 <groupId>com.google.code.gson</groupId>
98 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030099 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200100 <scope>provided</scope>
101 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300102
103 <!-- TITAN -->
Michael Lando451a3402017-02-19 10:28:42 +0200104 <dependency>
105 <groupId>com.thinkaurelius.titan</groupId>
106 <artifactId>titan-core</artifactId>
107 <version>${titan.version}</version>
108 <scope>provided</scope>
109 <exclusions>
110 <exclusion>
111 <groupId>org.json</groupId>
112 <artifactId>json</artifactId>
113 </exclusion>
114 <exclusion>
115 <artifactId>slf4j-log4j12</artifactId>
116 <groupId>org.slf4j</groupId>
117 </exclusion>
118 </exclusions>
119 </dependency>
120
121 <dependency>
Idan Amit39987c82017-09-13 13:51:41 +0300122 <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
123 <artifactId>sdc-titan-cassandra</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200124 <version>${titan.version}</version>
125 <scope>provided</scope>
126 <exclusions>
127 <exclusion>
128 <artifactId>slf4j-log4j12</artifactId>
129 <groupId>org.slf4j</groupId>
130 </exclusion>
131 </exclusions>
132 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300133 <!-- TITAN END -->
134
135 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200136 <groupId>org.apache.commons</groupId>
137 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200138 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200139 <scope>provided</scope>
140 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300141
142 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +0200143 <dependency>
144 <groupId>org.apache.httpcomponents</groupId>
145 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300146 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200147 <scope>provided</scope>
148 </dependency>
149
150 <dependency>
151 <groupId>org.apache.httpcomponents</groupId>
152 <artifactId>httpcore</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300153 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200154 <scope>provided</scope>
155 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300156
Michael Lando451a3402017-02-19 10:28:42 +0200157 <!-- CASSANDRA -->
158 <dependency>
159 <groupId>com.datastax.cassandra</groupId>
160 <artifactId>cassandra-driver-core</artifactId>
161 <version>${cassandra.driver.version}</version>
162 <scope>provided</scope>
163 </dependency>
164 <dependency>
165 <groupId>com.datastax.cassandra</groupId>
166 <artifactId>cassandra-driver-mapping</artifactId>
167 <version>${cassandra.driver.version}</version>
168 <scope>provided</scope>
169 </dependency>
170 <!-- CASSANDRA END -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300171
Michael Lando451a3402017-02-19 10:28:42 +0200172 <dependency>
173 <groupId>junit</groupId>
174 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300175 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200176 <scope>test</scope>
177 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200178
179 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300180 <groupId>org.mockito</groupId>
181 <artifactId>mockito-all</artifactId>
182 <version>${mockito.version}</version>
183 <scope>test</scope>
184 </dependency>
185
Michael Lando451a3402017-02-19 10:28:42 +0200186 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300187 <groupId>org.springframework</groupId>
188 <artifactId>spring-test</artifactId>
189 <version>${spring.version}</version>
190 <scope>test</scope>
191 </dependency>
192
193 <dependency>
194 <groupId>org.aspectj</groupId>
195 <artifactId>aspectjrt</artifactId>
196 <version>${aspectj.version}</version>
197 <scope>test</scope>
198 </dependency>
199
200 <dependency>
201 <groupId>org.aspectj</groupId>
202 <artifactId>aspectjweaver</artifactId>
203 <version>${aspectj.version}</version>
204 <scope>test</scope>
205 </dependency>
206
Michael Lando451a3402017-02-19 10:28:42 +0200207 <dependency>
208 <groupId>org.springframework</groupId>
209 <artifactId>spring-web</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200210 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200211 <scope>test</scope>
212 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300213
Michael Lando451a3402017-02-19 10:28:42 +0200214 <dependency>
215 <groupId>org.springframework</groupId>
216 <artifactId>spring-tx</artifactId>
217 <scope>test</scope>
218 <version>4.0.7.RELEASE</version>
219 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300220
Michael Lando451a3402017-02-19 10:28:42 +0200221 <dependency>
222 <groupId>org.apache.commons</groupId>
223 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300224 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200225 <scope>test</scope>
226 </dependency>
Michael Lando75aacbb2017-07-17 21:12:03 +0300227 <dependency>
228 <groupId>org.powermock</groupId>
229 <artifactId>powermock-module-junit4</artifactId>
230 <version>1.7.0RC4</version>
231 <scope>test</scope>
232 </dependency>
233 <dependency>
234 <groupId>org.powermock</groupId>
235 <artifactId>powermock-api-mockito-common</artifactId>
236 <version>1.6.5</version>
237 <scope>test</scope>
238 </dependency>
239 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200240 <build>
241 <plugins>
242 <plugin>
243 <groupId>org.apache.maven.plugins</groupId>
244 <artifactId>maven-deploy-plugin</artifactId>
245 <version>2.7</version>
246 <configuration>
247 <skip>true</skip>
248 </configuration>
249 </plugin>
250 </plugins>
251 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200252</project>