Fix/Renable sidecar builds
[aaf/cadi.git] / sidecar / tproxy-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--* ============LICENSE_START==================================================== 
3     * =========================================================================== 
4     * org.onap.aaf 
5     * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. 
6     * =========================================================================== 
7     * Licensed under the Apache License, Version 2.0 (the "License"); 
8     * you may not use this file except in compliance with the License. 
9     * You may obtain a copy of the License at 
10     * 
11     * http://www.apache.org/licenses/LICENSE-2.0 
12     * 
13     * Unless required by applicable law or agreed to in writing, software 
14     * distributed under the License is distributed on an "AS IS" BASIS, 
15     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
16     * See the License for the specific language governing permissions and 
17     * limitations under the License. 
18     * ============LICENSE_END==================================================== 
19     * -->
20 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22         <modelVersion>4.0.0</modelVersion>
23
24         <parent>
25                 <groupId>org.onap.aaf.cadi.sidecar</groupId>
26                 <artifactId>sidecar</artifactId>
27                 <version>2.1.7-SNAPSHOT</version>
28         </parent>
29
30         <artifactId>tproxy-config</artifactId>
31         <packaging>jar</packaging>
32
33         <name>Sidecar tproxy-config</name>
34         <description>ONAP AAF InitContainer For Pluggable Security</description>
35
36         <properties>
37                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
39                 <version.io.fabric8.fabric8-maven-plugin>3.5.32</version.io.fabric8.fabric8-maven-plugin>
40                 <docker.location>${basedir}/target</docker.location>
41                 <!-- <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> -->
42         </properties>
43
44         <build>
45                 <plugins>
46                         <plugin>
47                                 <groupId>com.mycila</groupId>
48                                 <artifactId>license-maven-plugin</artifactId>
49                                 <configuration>
50                                         <header>License.txt</header>
51                                         <includes>
52                                                 <include>src/main/bin/**</include>
53                                                 <include>src/docker/bin/**</include>
54                                                 <include>pom.xml</include>
55                                         </includes>
56                                         <skipExistingHeaders>true</skipExistingHeaders>
57                                 </configuration>
58                                 <executions>
59                                         <execution>
60                                                 <goals>
61                                                         <!-- Set goal from "check" to "format" to auto update license headers -->
62                                                         <goal>check</goal>
63                                                 </goals>
64                                                 <phase>validate</phase>
65                                         </execution>
66                                 </executions>
67                         </plugin>
68
69                         <plugin>
70                                 <groupId>org.apache.maven.plugins</groupId>
71                                 <artifactId>maven-resources-plugin</artifactId>
72                                 <version>3.0.2</version>
73                                 <executions>
74                                         <execution>
75                                                 <id>copy-docker-file</id>
76                                                 <phase>package</phase>
77                                                 <goals>
78                                                         <goal>copy-resources</goal>
79                                                 </goals>
80                                                 <configuration>
81                                                         <outputDirectory>target</outputDirectory>
82                                                         <overwrite>true</overwrite>
83                                                         <resources>
84                                                                 <resource>
85                                                                         <directory>${basedir}/src/main/docker</directory>
86                                                                         <filtering>true</filtering>
87                                                                 </resource>
88                                                                 <resource>
89                                                                         <directory>${basedir}/src/main/bin/</directory>
90                                                                         <filtering>true</filtering>
91                                                                 </resource>
92                                                         </resources>
93                                                 </configuration>
94                                         </execution>
95                                 </executions>
96                         </plugin>
97                         <plugin>
98                                 <groupId>com.spotify</groupId>
99                                 <artifactId>docker-maven-plugin</artifactId>
100                                 <version>0.4.11</version>
101                                 <configuration>
102                                         <verbose>true</verbose>
103                                         <serverId>docker-hub</serverId>
104                                         <imageName>${docker.push.registry}/onap/${project.artifactId}</imageName>
105                                         <dockerDirectory>${docker.location}</dockerDirectory>
106                                         <imageTags>
107                                                 <imageTag>latest</imageTag>
108                                         </imageTags>
109                                         <forceTags>true</forceTags>
110                                 </configuration>
111                         </plugin>
112                         <plugin>
113                                 <groupId>org.apache.maven.plugins</groupId>
114                                 <artifactId>maven-deploy-plugin</artifactId>
115                                 <configuration>
116                                         <skip>true</skip>
117                                 </configuration>
118                         </plugin>
119                 </plugins>
120         </build>
121 </project>