upgrade databind artifact
[appc.git] / appc-config / appc-data-services / installer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.onap.appc.parent</groupId>
26         <artifactId>odlparent-lite</artifactId>
27         <version>1.5.0-SNAPSHOT</version>
28         <relativePath />
29     </parent>
30   <groupId>org.onap.appc</groupId>
31
32     <artifactId>appc-config-data-services-installer</artifactId>
33     <version>1.5.0-SNAPSHOT</version>
34     <name>Config Component Data Services - Installer</name>
35     <packaging>pom</packaging>
36     <properties>
37         <application.name>appc-config-data-services</application.name>
38         <features.boot>appc-config-data-services</features.boot>
39         <features.repositories>mvn:org.onap.appc/onap-appc-config-data-services/${project.version}/xml/features</features.repositories>
40         <include.transitive.dependencies>false</include.transitive.dependencies>
41     </properties>
42     <dependencies>
43         <dependency>
44             <groupId>org.onap.appc</groupId>
45             <artifactId>onap-appc-config-data-services</artifactId>
46             <classifier>features</classifier>
47             <version>${project.version}</version>
48             <type>xml</type>
49             <exclusions>
50                 <exclusion>
51                     <groupId>*</groupId>
52                     <artifactId>*</artifactId>
53                 </exclusion>
54             </exclusions>
55         </dependency>
56         <dependency>
57             <groupId>org.onap.appc</groupId>
58             <artifactId>appc-config-data-services-provider</artifactId>
59             <version>1.5.0-SNAPSHOT</version>
60             <exclusions>
61               <exclusion>
62                 <groupId>com.fasterxml.jackson.core</groupId>
63                 <artifactId>jackson-databind</artifactId>
64               </exclusion>
65            </exclusions>
66         </dependency>
67         <dependency>
68            <groupId>com.fasterxml.jackson.core</groupId>
69            <artifactId>jackson-databind</artifactId>
70            <version>2.8.11.3</version>
71         </dependency>
72     </dependencies>
73     <build>
74         <plugins>
75             <plugin>
76                 <artifactId>maven-assembly-plugin</artifactId>
77                 <executions>
78                     <execution>
79                         <id>maven-repo-zip</id>
80                         <goals>
81                             <goal>single</goal>
82                         </goals>
83                         <phase>package</phase>
84                         <configuration>
85                                 <appendAssemblyId>false</appendAssemblyId>
86                             <attach>false</attach>
87                             <finalName>stage/${application.name}-${project.version}</finalName>
88                             <descriptors>
89                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
90                             </descriptors>
91                         </configuration>
92                     </execution>
93                     <execution>
94                         <id>installer-zip</id>
95                         <goals>
96                             <goal>single</goal>
97                         </goals>
98                         <phase>package</phase>
99                         <configuration>
100                                 <appendAssemblyId>false</appendAssemblyId>
101                             <attach>true</attach>
102                             <finalName>${application.name}-${project.version}</finalName>
103                             <descriptors>
104                                 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
105                             </descriptors>
106                         </configuration>
107                     </execution>
108                 </executions>
109             </plugin>
110             <plugin>
111                 <groupId>org.apache.maven.plugins</groupId>
112                 <artifactId>maven-dependency-plugin</artifactId>
113                 <executions>
114                     <execution>
115                         <id>copy-dependencies</id>
116                         <goals>
117                             <goal>copy-dependencies</goal>
118                         </goals>
119                         <phase>prepare-package</phase>
120                         <configuration>
121                             <transitive>false</transitive>
122                             <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
123                             <overWriteReleases>false</overWriteReleases>
124                             <overWriteSnapshots>true</overWriteSnapshots>
125                             <overWriteIfNewer>true</overWriteIfNewer>
126                             <useRepositoryLayout>true</useRepositoryLayout>
127                             <addParentPoms>false</addParentPoms>
128                             <copyPom>false</copyPom>
129                             <excludeGroupIds>org.opendaylight</excludeGroupIds>
130                             <scope>provided</scope>
131                         </configuration>
132                     </execution>
133                 </executions>
134             </plugin>
135             <plugin>
136                 <artifactId>maven-resources-plugin</artifactId>
137                 <executions>
138                     <execution>
139                         <id>copy-version</id>
140                         <goals>
141                             <goal>copy-resources</goal>
142                         </goals>
143                         <!-- here the phase you need -->
144                         <phase>validate</phase>
145                         <configuration>
146                             <outputDirectory>${basedir}/target/stage</outputDirectory>
147                             <resources>
148                                 <resource>
149                                     <directory>src/main/resources/scripts</directory>
150                                     <includes>
151                                         <include>install-feature.sh</include>
152                                     </includes>
153                                     <filtering>true</filtering>
154                                 </resource>
155                             </resources>
156                         </configuration>
157                     </execution>
158                 </executions>
159             </plugin>
160         </plugins>
161     </build>
162 </project>