ab5b4a2110f323e902a72699fb4805846113952e
[sdc.git] / onboarding / 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"
18     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20
21     <modelVersion>4.0.0</modelVersion>
22
23     <artifactId>sdc-onboarding</artifactId>
24     <packaging>pom</packaging>
25
26     <parent>
27         <groupId>org.openecomp.sdc</groupId>
28         <artifactId>sdc-main</artifactId>
29         <version>1.10.0-SNAPSHOT</version>
30     </parent>
31
32     <modules>
33         <module>../common</module>
34         <module>../openecomp-be</module>
35         <module>../openecomp-ui</module>
36     </modules>
37
38     <properties>
39
40         <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
41         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42
43         <!-- Maven plugin versions -->
44         <mvn.assembly.version>2.1</mvn.assembly.version>
45         <mvn.clean.version>2.5</mvn.clean.version>
46         <mvn.resource.version>3.1.0</mvn.resource.version>
47         <mvn.deploy.version>2.4</mvn.deploy.version>
48         <mvn.install.version>2.4</mvn.install.version>
49         <mvn.jar.version>2.4</mvn.jar.version>
50         <mvn.war.version>2.1.1</mvn.war.version>
51
52         <!-- Onboarding 3rd party versions -->
53         <aspectjrt.version>${aspectj.version}</aspectjrt.version>
54         <bsh.version>2.0b6</bsh.version>
55         <cglib.nodep.version>3.2.4</cglib.nodep.version>
56         <classmate.version>1.3.3</classmate.version>
57         <commons.codec.version>${commons-codec}</commons.codec.version>
58         <commons.digester.version>2.1</commons.digester.version>
59         <commons.lang3.version>${lang3.version}</commons.lang3.version>
60         <datastax.cassandra.version>3.8.0</datastax.cassandra.version>
61         <groovy.minimal.version>1.5.8</groovy.minimal.version>
62         <http.client.version>${httpclient.version}</http.client.version>
63         <http.core.version>4.4.1</http.core.version>
64         <httpasyncclient.version>4.1.2</httpasyncclient.version>
65         <com.sun.xml.version>2.3.3</com.sun.xml.version>
66         <javax.el.version>2.2.6</javax.el.version>
67         <javax.el-api.version>3.0.1-b06</javax.el-api.version>
68         <javax.inject.version>1</javax.inject.version>
69         <jackson.annotations.version>${jackson.version}</jackson.annotations.version>
70         <jackson.dataformat.version>${jackson.version}</jackson.dataformat.version>
71         <jcommander.version>1.58</jcommander.version>
72         <jersey.core.version>1.19.1</jersey.core.version>
73         <jersey.multipart.version>1.18.1</jersey.multipart.version>
74         <org.everit.json.schema.version>1.5.1</org.everit.json.schema.version>
75         <slf4j.version>${slf4j-api.version}</slf4j.version>
76         <spring.framework.version>${spring.version}</spring.framework.version>
77         <swagger.version>${swagger-core-mvn-plugin.version}</swagger.version>
78         <woodstox.version>4.4.1</woodstox.version>
79         <zusammen.version>1.0.2</zusammen.version>
80         <zusammen-state-store.version>1.0.2</zusammen-state-store.version>
81         <zusammen-collaboration-store.version>1.0.2</zusammen-collaboration-store.version>
82         <zusammen-index-store.version>1.0.0</zusammen-index-store.version>
83         <zusammen-common-utilities.version>1.0.3</zusammen-common-utilities.version>
84         <build.tools.version>${project.version}</build.tools.version>
85         <javax.servlet.version>${servlet-api.version}</javax.servlet.version>
86     </properties>
87
88     <dependencyManagement>
89         <dependencies>
90             <dependency>
91                 <groupId>org.projectlombok</groupId>
92                 <artifactId>lombok</artifactId>
93                 <version>${lombok.version}</version>
94                 <scope>provided</scope>
95             </dependency>
96             <dependency>
97                 <groupId>org.springframework</groupId>
98                 <artifactId>spring-expression</artifactId>
99                 <version>${spring.framework.version}</version>
100             </dependency>
101             <dependency>
102                 <groupId>org.springframework</groupId>
103                 <artifactId>spring-context</artifactId>
104                 <version>${spring.framework.version}</version>
105                 <exclusions>
106                     <exclusion>
107                         <groupId>org.springframework</groupId>
108                         <artifactId>spring-expression</artifactId>
109                     </exclusion>
110                     <exclusion>
111                         <groupId>org.springframework</groupId>
112                         <artifactId>spring-core</artifactId>
113                     </exclusion>
114                 </exclusions>
115             </dependency>
116             <dependency>
117                 <groupId>org.springframework</groupId>
118                 <artifactId>spring-webmvc</artifactId>
119                 <version>${spring.framework.version}</version>
120                 <exclusions>
121                     <exclusion>
122                         <groupId>org.springframework</groupId>
123                         <artifactId>spring-expression</artifactId>
124                     </exclusion>
125                     <exclusion>
126                         <groupId>org.springframework</groupId>
127                         <artifactId>spring-core</artifactId>
128                     </exclusion>
129                     <exclusion>
130                         <groupId>org.springframework</groupId>
131                         <artifactId>spring-web</artifactId>
132                     </exclusion>
133                 </exclusions>
134             </dependency>
135             <dependency>
136                 <groupId>org.apache.commons</groupId>
137                 <artifactId>commons-text</artifactId>
138                 <version>${apache-commons-text.version}</version>
139             </dependency>
140             <dependency>
141                 <groupId>com.beust</groupId>
142                 <artifactId>jcommander</artifactId>
143                 <version>${jcommander.version}</version>
144             </dependency>
145             <dependency>
146                 <groupId>org.apache.httpcomponents</groupId>
147                 <artifactId>httpasyncclient</artifactId>
148                 <version>${httpasyncclient.version}</version>
149             </dependency>
150             <dependency>
151                 <groupId>com.sun.xml.bind</groupId>
152                 <artifactId>jaxb-impl</artifactId>
153                 <version>${com.sun.xml.version}</version>
154             </dependency>
155             <dependency>
156                 <groupId>org.beanshell</groupId>
157                 <artifactId>bsh</artifactId>
158                 <version>${bsh.version}</version>
159             </dependency>
160             <dependency>
161                 <groupId>commons-digester</groupId>
162                 <artifactId>commons-digester</artifactId>
163                 <version>${commons.digester.version}</version>
164             </dependency>
165             <dependency>
166                 <groupId>com.fasterxml</groupId>
167                 <artifactId>classmate</artifactId>
168                 <version>${classmate.version}</version>
169             </dependency>
170             <dependency>
171                 <groupId>org.slf4j</groupId>
172                 <artifactId>slf4j-api</artifactId>
173                 <version>${slf4j.version}</version>
174             </dependency>
175             <dependency>
176                 <groupId>org.codehaus.groovy</groupId>
177                 <artifactId>groovy-all-minimal</artifactId>
178                 <version>${groovy.minimal.version}</version>
179             </dependency>
180             <dependency>
181                 <groupId>org.codehaus.janino</groupId>
182                 <artifactId>janino</artifactId>
183                 <version>${janino.version}</version>
184                 <scope>provided</scope>
185             </dependency>
186             <dependency>
187                 <groupId>com.fasterxml.jackson.core</groupId>
188                 <artifactId>jackson-annotations</artifactId>
189                 <version>${jackson.annotations.version}</version>
190             </dependency>
191             <dependency>
192                 <groupId>com.fasterxml.jackson.core</groupId>
193                 <artifactId>jackson-core</artifactId>
194                 <version>${jackson.version}</version>
195             </dependency>
196             <dependency>
197                 <groupId>org.aspectj</groupId>
198                 <artifactId>aspectjrt</artifactId>
199                 <version>${aspectjrt.version}</version>
200             </dependency>
201             <dependency>
202                 <groupId>javax.servlet</groupId>
203                 <artifactId>javax.servlet-api</artifactId>
204                 <version>${servlet-api.version}</version>
205                 <scope>provided</scope>
206             </dependency>
207             <dependency>
208                 <groupId>commons-beanutils</groupId>
209                 <artifactId>commons-beanutils</artifactId>
210                 <version>${commons-beanutils}</version>
211             </dependency>
212             <dependency>
213                 <groupId>com.google.code.findbugs</groupId>
214                 <artifactId>annotations</artifactId>
215                 <version>3.0.1u2</version>
216             </dependency>
217             <dependency>
218                 <groupId>cglib</groupId>
219                 <artifactId>cglib-nodep</artifactId>
220                 <version>${cglib.nodep.version}</version>
221             </dependency>
222             <dependency>
223                 <groupId>ch.qos.logback</groupId>
224                 <artifactId>logback-classic</artifactId>
225                 <version>${logback.version}</version>
226             </dependency>
227             <dependency>
228                 <groupId>ch.qos.logback</groupId>
229                 <artifactId>logback-core</artifactId>
230                 <version>${logback.version}</version>
231             </dependency>
232             <dependency>
233                 <groupId>com.fasterxml.jackson.core</groupId>
234                 <artifactId>jackson-databind</artifactId>
235                 <version>${jackson.version}</version>
236                 <exclusions>
237                     <exclusion>
238                         <groupId>com.fasterxml.jackson.core</groupId>
239                         <artifactId>jackson-core</artifactId>
240                     </exclusion>
241                 </exclusions>
242             </dependency>
243             <dependency>
244                 <groupId>com.fasterxml.jackson.dataformat</groupId>
245                 <artifactId>jackson-dataformat-yaml</artifactId>
246                 <version>${jackson.version}</version>
247             </dependency>
248             <dependency>
249                 <groupId>commons-codec</groupId>
250                 <artifactId>commons-codec</artifactId>
251                 <version>${commons.codec.version}</version>
252             </dependency>
253             <dependency>
254                 <groupId>com.datastax.cassandra</groupId>
255                 <artifactId>cassandra-driver-core</artifactId>
256                 <version>${datastax.cassandra.version}</version>
257             </dependency>
258             <dependency>
259                 <groupId>com.datastax.cassandra</groupId>
260                 <artifactId>cassandra-driver-mapping</artifactId>
261                 <version>${datastax.cassandra.version}</version>
262             </dependency>
263             <dependency>
264                 <groupId>javax.ws.rs</groupId>
265                 <artifactId>javax.ws.rs-api</artifactId>
266                 <version>${ws.rs.version}</version>
267             </dependency>
268             <dependency>
269                 <groupId>com.google.code.gson</groupId>
270                 <artifactId>gson</artifactId>
271                 <version>${gson.version}</version>
272             </dependency>
273             <dependency>
274                 <groupId>commons-io</groupId>
275                 <artifactId>commons-io</artifactId>
276                 <version>${commons.io.version}</version>
277             </dependency>
278             <dependency>
279                 <groupId>org.apache.commons</groupId>
280                 <artifactId>commons-lang3</artifactId>
281                 <version>${commons.lang3.version}</version>
282             </dependency>
283             <dependency>
284                 <groupId>io.swagger.core.v3</groupId>
285                 <artifactId>swagger-annotations</artifactId>
286                 <version>${swagger.version}</version>
287             </dependency>
288             <dependency>
289                 <groupId>com.github.tomakehurst</groupId>
290                 <artifactId>wiremock</artifactId>
291                 <version>${wire-mock.version}</version>
292             </dependency>
293         </dependencies>
294     </dependencyManagement>
295
296     <build>
297         <plugins>
298             <plugin>
299                 <groupId>org.apache.maven.plugins</groupId>
300                 <artifactId>maven-jar-plugin</artifactId>
301                 <version>${mvn.jar.version}</version>
302             </plugin>
303             <plugin>
304                 <groupId>org.apache.maven.plugins</groupId>
305                 <artifactId>maven-clean-plugin</artifactId>
306                 <version>${mvn.clean.version}</version>
307             </plugin>
308             <plugin>
309                 <groupId>org.apache.maven.plugins</groupId>
310                 <artifactId>maven-surefire-plugin</artifactId>
311                 <configuration>
312                     <printSummary>false</printSummary>
313                     <additionalClasspathElements>
314                         <additionalClasspathElement>${project.basedir}/src/test/resources
315                         </additionalClasspathElement>
316                     </additionalClasspathElements>
317                     <systemPropertyVariables>
318                         <logback.configurationFile>src/test/resources/logback-test.xml
319                         </logback.configurationFile>
320                         <config.location>${project.basedir}/configuration</config.location>
321                     </systemPropertyVariables>
322                 </configuration>
323             </plugin>
324             <plugin>
325                 <groupId>org.apache.maven.plugins</groupId>
326                 <artifactId>maven-install-plugin</artifactId>
327                 <version>${mvn.install.version}</version>
328             </plugin>
329             <plugin>
330                 <groupId>org.apache.maven.plugins</groupId>
331                 <artifactId>maven-resources-plugin</artifactId>
332                 <version>${mvn.resource.version}</version>
333             </plugin>
334         </plugins>
335         <testResources>
336             <testResource>
337                 <directory>src/test/resources</directory>
338                 <excludes>
339                     <exclude>**/*</exclude>
340                 </excludes>
341             </testResource>
342         </testResources>
343     </build>
344
345 </project>