Increment version to 2.6.2-SNAPSHOT
[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>2.6.2-SNAPSHOT</version>
30
31     <parent>
32         <groupId>org.onap.ccsdk.parent</groupId>
33         <artifactId>binding-parent</artifactId>
34         <version>1.3.2</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         <commons-codec.version>1.12</commons-codec.version>
45         <mariadb.client.version>2.1.1</mariadb.client.version>
46         <snakeyaml.version>1.15</snakeyaml.version>
47         <dmaap.client.version>1.1.5</dmaap.client.version>
48         <eelf.version>1.0.0</eelf.version>
49         <eelf.maven.plugin.version>1.0.0</eelf.maven.plugin.version>
50         <cadi-version>1.3.0</cadi-version>
51         <inno-version>1.2.11</inno-version>
52         <dme2-version>3.1.200</dme2-version>
53         <bundle.plugin.version>2.5.0</bundle.plugin.version>
54         <maven.compile.plugin.version>2.5.1</maven.compile.plugin.version>
55         <equinox.osgi.version>3.8.1.v20120830-144521</equinox.osgi.version>
56         <apache.httpcomponents.version>4.4</apache.httpcomponents.version>
57         <commons.lang3.version>3.4</commons.lang3.version>
58         <antlr.version>4.5.1</antlr.version>
59         <logback.version>1.2.3</logback.version>
60         <toscalib.version>1.1.0</toscalib.version>
61         <sdc-client.version>1.3.0</sdc-client.version>
62         <!-- Should match the version used by sdc-distribution-client -->
63         <saClientLibrary.version>0.0.1</saClientLibrary.version>
64         <!-- Should match the version used by sdc-distribution-client -->
65         <cambriaClient.version>0.0.1</cambriaClient.version>
66         <jackson.yml.version>2.3.2</jackson.yml.version>
67         <tosca.datatype.version>1.1.0</tosca.datatype.version>
68         <velocity.version>1.7</velocity.version>
69         <xmlunit.version>1.6</xmlunit.version>
70         <xmlunit-core.version>2.3.0</xmlunit-core.version>
71
72         <!-- SONAR -->
73         <sonar.language>java</sonar.language>
74         <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
75         <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
76         <sonar.jacoco.reportPath>${project.build.directory}/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
77         <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
78         <sonar.projectVersion>${project.version}</sonar.projectVersion>
79
80         <salGeneratorPath>target/generated-sources/yang-gen-sal</salGeneratorPath>
81         <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
82         <!-- ADDING TO SUPPORT APPC-PROVIDER-MODEL yang-gen-sal FOLDER GENERATION -->
83         <yang.file.directory>src/main/yang</yang.file.directory>
84         <features.file>features.xml</features.file>
85         <jmxGeneratorPath>target/generated-sources/yang-gen-config</jmxGeneratorPath>
86         <!-- <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath> -->
87
88         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
89
90         <sdnctl.dblib.version>${ccsdk.sli.core.version}</sdnctl.dblib.version>
91         <sdnctl.sli.version>${ccsdk.sli.core.version}</sdnctl.sli.version>
92         <commons.collections.version>3.2.2</commons.collections.version>
93         <odl.sal.api.gen.plugin.version>0.13.1</odl.sal.api.gen.plugin.version>
94         <odl.yang.jmx.generator.version>0.8.3</odl.yang.jmx.generator.version>
95         <odl.controller.config.api.version>0.8.3</odl.controller.config.api.version>
96     </properties>
97     <dependencyManagement>
98         <dependencies>
99             <dependency>
100                 <groupId>commons-codec</groupId>
101                 <artifactId>commons-codec</artifactId>
102                 <version>${commons-codec.version}</version>
103             </dependency>
104             <dependency>
105                 <groupId>org.opendaylight.controller</groupId>
106                 <artifactId>config-api</artifactId>
107                 <version>${odl.controller.config.api.version}</version>
108             </dependency>
109             <dependency>
110                 <groupId>org.opendaylight.controller</groupId>
111                 <artifactId>sal-binding-config</artifactId>
112                 <version>${odl.mdsal.version}</version>
113             </dependency>
114             <dependency>
115                 <groupId>org.yaml</groupId>
116                 <artifactId>snakeyaml</artifactId>
117                 <version>${snakeyaml.version}</version>
118             </dependency>
119             <dependency>
120                 <groupId>equinoxSDK381</groupId>
121                 <artifactId>org.eclipse.osgi</artifactId>
122                 <version>${equinox.osgi.version}</version>
123             </dependency>
124             <dependency>
125                 <groupId>org.mariadb.jdbc</groupId>
126                 <artifactId>mariadb-java-client</artifactId>
127                 <version>${mariadb.client.version}</version>
128             </dependency>
129             <dependency>
130                 <groupId>org.apache.sshd</groupId>
131                 <artifactId>sshd-core</artifactId>
132                 <version>${apache.sshd.version}</version>
133             </dependency>
134             <dependency>
135                 <groupId>org.apache.velocity</groupId>
136                 <artifactId>velocity</artifactId>
137                 <version>${velocity.version}</version>
138             </dependency>
139             <dependency>
140                 <groupId>org.onap.ccsdk.sli.core</groupId>
141                 <artifactId>sli-common</artifactId>
142                 <version>${ccsdk.sli.core.version}</version>
143             </dependency>
144
145             <dependency>
146                 <groupId>org.onap.ccsdk.sli.core</groupId>
147                 <artifactId>sli-provider</artifactId>
148                 <version>${ccsdk.sli.core.version}</version>
149             </dependency>
150             <dependency>
151                 <groupId>org.onap.ccsdk.sli.core</groupId>
152                 <artifactId>ccsdk-sli</artifactId>
153                 <version>${ccsdk.sli.core.version}</version>
154                 <type>xml</type>
155                 <classifier>features</classifier>
156             </dependency>
157             <dependency>
158                 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
159                 <artifactId>aai-service-provider</artifactId>
160                 <version>${sdnctl.aai.service.version}</version>
161             </dependency>
162
163             <dependency>
164                 <groupId>org.onap.ccsdk.sli.core</groupId>
165                 <artifactId>dblib-provider</artifactId>
166                 <version>${sdnctl.dblib.version}</version>
167             </dependency>
168         </dependencies>
169     </dependencyManagement>
170
171     <build>
172         <plugins>
173             <plugin>
174                 <groupId>org.apache.maven.plugins</groupId>
175                 <artifactId>maven-install-plugin</artifactId>
176                 <version>2.5.2</version>
177                 <executions>
178                     <execution>
179                         <id>additional-install</id>
180                         <phase>none</phase>
181                     </execution>
182                 </executions>
183             </plugin>
184         </plugins>
185     </build>
186
187 </project>