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