Prepare for release 2.1.18
[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.18-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>${project.basedir}/target/${project.artifactId}-${project.version}-build</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                                 <artifactId>maven-assembly-plugin</artifactId>
71                                 <configuration>
72                                         <descriptors>
73                                                 <descriptor>src/main/assembly/descriptor.xml</descriptor>
74                                         </descriptors>
75                                 </configuration>
76                                 <executions>
77                                         <execution>
78                                                 <id>make-assembly</id>
79                                                 <phase>package</phase>
80                                                 <goals>
81                                                         <goal>single</goal>
82                                                 </goals>
83                                         </execution>
84                                 </executions>
85                         </plugin>
86
87                         <!--<plugin>
88                                 <groupId>io.fabric8</groupId>
89                                 <artifactId>docker-maven-plugin</artifactId>
90                                 <version>0.28.0</version>
91                                 <configuration>
92                                         <verbose>true</verbose>
93                                         <apiVersion>${docker.apiVersion}</apiVersion>
94                                         <pullRegistry>${docker.pull.registry}</pullRegistry>
95                                         <pushRegistry>${docker.push.registry}</pushRegistry>
96                                         <images>
97                                                 <image>
98                                                         <name>${docker.push.registry}/onap/${project.artifactId}</name>
99                                                         <build>
100                                                                 <cleanup>try</cleanup>
101                                                                 <dockerFileDir>${project.basedir}/src/main/docker</dockerFileDir>
102                                                                 <tags>
103                                                                         <tag>latest</tag>
104                                                                 </tags>
105                                                                 <assembly>
106                                                                         <inline>
107                                                                                 <fileSets>
108                                                                                         <fileSet>
109                                                                                                 <directory>${docker.location}</directory>
110                                                                                                 <outputDirectory>/${project.artifactId}</outputDirectory>
111                                                                                         </fileSet>
112                                                                                 </fileSets>
113                                                                         </inline>
114                                                                 </assembly>
115                                                         </build>
116                                                 </image>
117                                         </images>
118                                 </configuration>
119                                 <executions>
120                                         <execution>
121                                                 <id>generate-images</id>
122                                                 <phase>install</phase>
123                                         </execution>
124                                         <execution>
125                                                 <id>push-images</id>
126                                                 <phase>deploy</phase>
127                                                 <goals>
128                                                         <goal>push</goal>
129                                                 </goals>
130                                         </execution>
131                                 </executions>
132                         </plugin>
133
134                         <plugin>
135                                 <groupId>org.apache.maven.plugins</groupId>
136                                 <artifactId>maven-deploy-plugin</artifactId>
137                                 <configuration>
138                                         <skip>true</skip>
139                                 </configuration>
140                         </plugin> -->
141                 </plugins>
142         </build>
143 </project>