upgrade databind artifact
[appc.git] / appc-config / appc-flow-controller / 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-flow-controller-installer</artifactId>
33     <version>1.5.0-SNAPSHOT</version>
34     <name>Config Component Params - Installer</name>
35     <packaging>pom</packaging>
36     <properties>
37         <application.name>appc-config-flow-controller</application.name>
38         <features.boot>appc-config-flow-controller</features.boot>
39         <features.repositories>mvn:org.onap.appc/onap-appc-config-flow-controller/${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-flow-controller</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-flow-controller-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
68         <dependency>
69            <groupId>com.fasterxml.jackson.core</groupId>
70            <artifactId>jackson-databind</artifactId>
71            <version>2.8.11.3</version>
72         </dependency>
73     </dependencies>
74     <build>
75         <plugins>
76             <plugin>
77                 <artifactId>maven-assembly-plugin</artifactId>
78                 <executions>
79                     <execution>
80                         <id>maven-repo-zip</id>
81                         <goals>
82                             <goal>single</goal>
83                         </goals>
84                         <phase>package</phase>
85                         <configuration>
86                             <appendAssemblyId>false</appendAssemblyId>
87                             <attach>false</attach>
88                             <finalName>stage/${application.name}-${project.version}</finalName>
89                             <descriptors>
90                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
91                             </descriptors>
92                         </configuration>
93                     </execution>
94                     <execution>
95                         <id>installer-zip</id>
96                         <goals>
97                             <goal>single</goal>
98                         </goals>
99                         <phase>package</phase>
100                         <configuration>
101                             <appendAssemblyId>false</appendAssemblyId>
102                             <attach>true</attach>
103                             <finalName>${application.name}-${project.version}</finalName>
104                             <descriptors>
105                                 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
106                             </descriptors>
107                         </configuration>
108                     </execution>
109                 </executions>
110             </plugin>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-dependency-plugin</artifactId>
114                 <executions>
115                     <execution>
116                         <id>copy-dependencies</id>
117                         <goals>
118                             <goal>copy-dependencies</goal>
119                         </goals>
120                         <phase>prepare-package</phase>
121                         <configuration>
122                             <transitive>false</transitive>
123                             <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
124                             <overWriteReleases>false</overWriteReleases>
125                             <overWriteSnapshots>true</overWriteSnapshots>
126                             <overWriteIfNewer>true</overWriteIfNewer>
127                             <useRepositoryLayout>true</useRepositoryLayout>
128                             <addParentPoms>false</addParentPoms>
129                             <copyPom>false</copyPom>
130                             <excludeGroupIds>org.opendaylight</excludeGroupIds>
131                             <scope>provided</scope>
132                         </configuration>
133                     </execution>
134                 </executions>
135             </plugin>
136             <plugin>
137                 <artifactId>maven-resources-plugin</artifactId>
138                 <executions>
139                     <execution>
140                         <id>copy-version</id>
141                         <goals>
142                             <goal>copy-resources</goal>
143                         </goals>
144                         <!-- here the phase you need -->
145                         <phase>validate</phase>
146                         <configuration>
147                             <outputDirectory>${basedir}/target/stage</outputDirectory>
148                             <resources>
149                                 <resource>
150                                     <directory>src/main/resources/scripts</directory>
151                                     <includes>
152                                         <include>install-feature.sh</include>
153                                     </includes>
154                                     <filtering>true</filtering>
155                                 </resource>
156                             </resources>
157                         </configuration>
158                     </execution>
159                 </executions>
160             </plugin>
161         </plugins>
162     </build>
163 </project>