Update ccsdk parent version
[appc/parent.git] / binding-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
7 =============================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12       http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23
24
25     <modelVersion>4.0.0</modelVersion>
26     <packaging>pom</packaging>
27     <groupId>org.onap.appc.parent</groupId>
28     <artifactId>binding-parent</artifactId>
29     <version>1.5.0-SNAPSHOT</version>
30
31     <parent>
32         <groupId>org.onap.ccsdk.parent</groupId>
33         <artifactId>binding-parent</artifactId>
34         <version>1.2.1-SNAPSHOT</version>
35         <relativePath />
36     </parent>
37
38     <properties>
39         <!-- VERSIONS -->
40
41         <assertj.version>3.9.0</assertj.version>
42         <apache.sshd.version>1.6.0</apache.sshd.version>
43         <cdp.pal.version>1.1.25.8-oss</cdp.pal.version>
44         <mariadb.client.version>2.1.1</mariadb.client.version>
45         <snakeyaml.version>1.15</snakeyaml.version>
46         <dmaap.client.version>1.1.5</dmaap.client.version>
47         <eelf.version>1.0.0</eelf.version>
48         <eelf.maven.plugin.version>1.0.0</eelf.maven.plugin.version>
49         <cadi-version>1.3.0</cadi-version>
50         <inno-version>1.2.11</inno-version>
51         <dme2-version>3.1.200</dme2-version>
52         <bundle.plugin.version>2.5.0</bundle.plugin.version>
53         <maven.compile.plugin.version>2.5.1</maven.compile.plugin.version>
54         <equinox.osgi.version>3.8.1.v20120830-144521</equinox.osgi.version>
55         <apache.httpcomponents.version>4.4</apache.httpcomponents.version>
56         <commons.lang3.version>3.4</commons.lang3.version>
57         <antlr.version>4.5.1</antlr.version>
58         <logback.version>1.2.3</logback.version>
59         <toscalib.version>1.1.0</toscalib.version>
60         <sdc-client.version>1.3.0</sdc-client.version>
61         <!-- Should match the version used by sdc-distribution-client -->
62         <saClientLibrary.version>0.0.1</saClientLibrary.version>
63         <!-- Should match the version used by sdc-distribution-client -->
64         <cambriaClient.version>0.0.1</cambriaClient.version>
65         <jackson.yml.version>2.3.2</jackson.yml.version>
66         <tosca.datatype.version>1.1.0</tosca.datatype.version>
67         <velocity.version>1.7</velocity.version>
68         <xmlunit.version>1.6</xmlunit.version>
69         <xmlunit-core.version>2.3.0</xmlunit-core.version>
70
71         <!-- SONAR -->
72         <sonar.language>java</sonar.language>
73         <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
74         <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
75         <sonar.jacoco.reportPath>${project.build.directory}/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
76         <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
77         <sonar.projectVersion>${project.version}</sonar.projectVersion>
78
79         <salGeneratorPath>target/generated-sources/yang-gen-sal</salGeneratorPath>
80         <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
81         <!-- ADDING TO SUPPORT APPC-PROVIDER-MODEL yang-gen-sal FOLDER GENERATION -->
82         <yang.file.directory>src/main/yang</yang.file.directory>
83         <features.file>features.xml</features.file>
84         <jmxGeneratorPath>target/generated-sources/yang-gen-config</jmxGeneratorPath>
85         <!-- <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath> -->
86
87         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
88         
89         <sdnctl.dblib.version>${ccsdk.sli.core.version}</sdnctl.dblib.version>
90         <sdnctl.sli.version>${ccsdk.sli.core.version}</sdnctl.sli.version>
91         <commons.collections.version>3.2.2</commons.collections.version>
92         <odl.sal.api.gen.plugin.version>0.13.1</odl.sal.api.gen.plugin.version>
93         <odl.yang.jmx.generator.version>0.8.3</odl.yang.jmx.generator.version>
94         <odl.controller.config.api.version>0.8.3</odl.controller.config.api.version>
95     </properties>
96         <dependencyManagement>
97                 <dependencies>
98                         <dependency>
99                                 <groupId>org.opendaylight.controller</groupId>
100                                 <artifactId>config-api</artifactId>
101                                 <version>${odl.controller.config.api.version}</version>
102                         </dependency>
103                         <dependency>
104                                 <groupId>org.opendaylight.controller</groupId>
105                                 <artifactId>sal-binding-config</artifactId>
106                                 <version>${odl.mdsal.version}</version>
107                         </dependency>
108                         <dependency>
109                                 <groupId>org.yaml</groupId>
110                                 <artifactId>snakeyaml</artifactId>
111                                 <version>${snakeyaml.version}</version>
112                         </dependency>
113                         <dependency>
114                                 <groupId>equinoxSDK381</groupId>
115                                 <artifactId>org.eclipse.osgi</artifactId>
116                                 <version>${equinox.osgi.version}</version>
117                         </dependency>
118                         <dependency>
119                                 <groupId>org.mariadb.jdbc</groupId>
120                                 <artifactId>mariadb-java-client</artifactId>
121                                 <version>${mariadb.client.version}</version>
122                         </dependency>
123                         <dependency>
124                                 <groupId>org.apache.sshd</groupId>
125                                 <artifactId>sshd-core</artifactId>
126                                 <version>${apache.sshd.version}</version>
127                         </dependency>
128                         <dependency>
129                                 <groupId>org.apache.velocity</groupId>
130                                 <artifactId>velocity</artifactId>
131                                 <version>${velocity.version}</version>
132                         </dependency>
133                         <dependency>
134                                 <groupId>org.onap.ccsdk.sli.core</groupId>
135                                 <artifactId>sli-common</artifactId>
136                                 <version>${ccsdk.sli.core.version}</version>
137                         </dependency>
138
139                         <dependency>
140                                 <groupId>org.onap.ccsdk.sli.core</groupId>
141                                 <artifactId>sli-provider</artifactId>
142                                 <version>${ccsdk.sli.core.version}</version>
143                         </dependency>
144                         <dependency>
145                                 <groupId>org.onap.ccsdk.sli.core</groupId>
146                                 <artifactId>ccsdk-sli</artifactId>
147                                 <version>${ccsdk.sli.core.version}</version>
148                                 <type>xml</type>
149                                 <classifier>features</classifier>
150                         </dependency>
151                         <dependency>
152                                 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
153                                 <artifactId>aai-service-provider</artifactId>
154                                 <version>${sdnctl.aai.service.version}</version>
155                         </dependency>
156
157                         <dependency>
158                                 <groupId>org.onap.ccsdk.sli.core</groupId>
159                                 <artifactId>dblib-provider</artifactId>
160                                 <version>${sdnctl.dblib.version}</version>
161                         </dependency>
162                 </dependencies>
163         </dependencyManagement>
164 </project>