Increment version to 1.6.4-SNAPSHOT
[appc/deployment.git] / platform-logic / 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 ===================================================================
8
9 Unless otherwise specified, all software contained herein is licensed
10 under the Apache License, Version 2.0 (the License);
11 you may not use this software except in compliance with the License.
12 You may obtain a copy of the License at
13
14     http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
22 ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 ============LICENSE_END============================================
24 -->
25 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
27
28         <parent>
29                 <groupId>org.onap.appc.deployment</groupId>
30                 <artifactId>platform-logic</artifactId>
31                 <version>1.6.4-SNAPSHOT</version>
32         </parent>
33
34         <modelVersion>4.0.0</modelVersion>
35         <packaging>pom</packaging>
36         <groupId>org.onap.appc.deployment</groupId>
37         <artifactId>platform-logic-installer</artifactId>
38         <version>1.6.4-SNAPSHOT</version>
39
40         <name>Platform Logic Installer for APP-C</name>
41         <description>Contains platform-level service logic installer for APP-C</description>
42
43         <build>
44                 <plugins>
45                                 <plugin>
46                                 <artifactId>maven-resources-plugin</artifactId>
47                                 <version>2.6</version>
48                                 <executions>
49                                         <execution>
50                                                 <id>copy-version</id>
51                                                 <goals>
52                                                         <goal>copy-resources</goal>
53                                                 </goals><!-- here the phase you need -->
54                                                 <phase>validate</phase>
55                                                 <configuration>
56                                                         <outputDirectory>target/resources</outputDirectory>
57                                                         <resources>
58                                                                 <resource>
59                                                                         <directory>src/main/resources</directory>
60                                                                         <includes>
61                                                                                 <include>*</include>
62                                                                         </includes>
63                                                                         <filtering>true</filtering>
64                                                                 </resource>
65                                                         </resources>
66                                                 </configuration>
67                                         </execution>
68                                 </executions>
69                         </plugin>
70                         <plugin>
71                                 <artifactId>maven-assembly-plugin</artifactId>
72                                 <version>2.6</version>
73                                 <executions>
74                                         <execution>
75                                                 <id>create-zip</id>
76                                                 <goals>
77                                                         <goal>single</goal>
78                                                 </goals>
79                                                 <phase>package</phase>
80                                                 <configuration>
81                                                         <attach>true</attach>
82                                                         <descriptors>
83                                                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
84                                                         </descriptors>
85                                                         <appendAssemblyId>false</appendAssemblyId>
86                                                 </configuration>
87                                         </execution>
88
89                                 </executions>
90                         </plugin>
91                         <plugin>
92                                 <groupId>org.apache.maven.plugins</groupId>
93                                 <artifactId>maven-dependency-plugin</artifactId>
94                                 <executions>
95                                         <execution>
96                                                 <id>copy-dependencies</id>
97                                                 <goals>
98                                                         <goal>copy-dependencies</goal>
99                                                 </goals>
100                                                 <phase>prepare-package</phase>
101                                                 <configuration>
102                                                         <transitive>false</transitive>
103                                                         <outputDirectory>${project.build.directory}/lib</outputDirectory>
104                                                         <overWriteReleases>false</overWriteReleases>
105                                                         <overWriteSnapshots>true</overWriteSnapshots>
106                                                         <overWriteIfNewer>true</overWriteIfNewer>
107                                                         <useRepositoryLayout>false</useRepositoryLayout>
108                                                         <addParentPoms>false</addParentPoms>
109                                                         <copyPom>false</copyPom>
110                                                         <scope>provided</scope>
111                                                 </configuration>
112                                         </execution>
113                                 </executions>
114                         </plugin>
115                 </plugins>
116
117         </build>
118         <dependencies>
119                 <dependency>
120                         <groupId>org.slf4j</groupId>
121                         <artifactId>slf4j-api</artifactId>
122                         <version>${slf4j.version}</version>
123                 </dependency>
124                 <dependency>
125                         <groupId>org.slf4j</groupId>
126                         <artifactId>slf4j-simple</artifactId>
127                         <version>1.7.5</version>
128                         <scope>compile</scope>
129                 </dependency>
130                 <dependency>
131                         <groupId>org.onap.ccsdk.sli.core</groupId>
132                         <artifactId>sli-common</artifactId>
133                         <version>${ccsdk.sli.core.version}</version>
134                 </dependency>
135                 <dependency>
136                         <groupId>org.antlr</groupId>
137                         <artifactId>antlr4</artifactId>
138                         <version>${antlr.version}</version>
139                         <type>jar</type>
140                         <scope>compile</scope>
141                 </dependency>
142                 <dependency>
143                         <groupId>org.mariadb.jdbc</groupId>
144                         <artifactId>mariadb-java-client</artifactId>
145                         <version>${mariadb.connector.version}</version>
146                         <type>jar</type>
147                         <scope>compile</scope>
148                 </dependency>
149         </dependencies>
150
151 </project>