reverted the open jdk image
[dmaap/kafka11aaf.git] / pom.xml
1 <!-- ============LICENSE_START======================================================= 
2         org.onap.dmaap ================================================================================ 
3         Copyright © 2017 AT&T Intellectual Property. All rights reserved. ================================================================================ 
4         Licensed under the Apache License, Version 2.0 (the "License"); you may not 
5         use this file except in compliance with the License. You may obtain a copy 
6         of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required 
7         by applicable law or agreed to in writing, software distributed under the 
8         License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 
9         OF ANY KIND, either express or implied. See the License for the specific 
10         language governing permissions and limitations under the License. ============LICENSE_END========================================================= 
11         ECOMP is a trademark and service mark of AT&T Intellectual Property. -->
12 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14         <modelVersion>4.0.0</modelVersion>
15
16         <parent>
17                 <groupId>org.onap.oparent</groupId>
18                 <artifactId>oparent</artifactId>
19                 <version>1.2.1</version>
20         </parent>
21
22         <groupId>org.onap.dmaap.kafka</groupId>
23         <artifactId>kafka11aaf</artifactId>
24         <version>0.0.4-SNAPSHOT</version>
25         <name>dmaap-kafka11aaf</name>
26         <licenses>
27                 <license>
28                         <name>Apache License Version 2.0</name>
29                 </license>
30         </licenses>
31
32         <developers>
33                 <developer>
34                         <name>Sunil Unnava</name>
35                         <email></email>
36                         <organization>ATT</organization>
37                         <organizationUrl>www.att.com</organizationUrl>
38                 </developer>
39         </developers>
40
41         <build>
42         <!-- Copy files to docker-stage to be included in image -->        
43         <resources>
44             <resource>
45                 <targetPath>${basedir}/target/docker-stage</targetPath>
46                 <directory>${basedir}/src/main/docker</directory>
47                     <includes>
48                         <include>*</include>
49                     </includes>
50             </resource>
51         </resources>
52                 <plugins>
53                         <plugin>
54                                 <groupId>org.apache.maven.plugins</groupId>
55                                 <artifactId>maven-surefire-plugin</artifactId>
56                                 <version>2.12.4</version>
57                                 <configuration>
58                                         <excludes>
59                                                 <!-- exclude until junits updated <exclude>**/DME2*.java</exclude> -->
60                                         </excludes>
61                                         <!-- <skipTests>true</skipTests> -->
62                                 </configuration>
63                         </plugin>
64                         <plugin>
65                                 <groupId>org.codehaus.mojo</groupId>
66                                 <artifactId>cobertura-maven-plugin</artifactId>
67                                 <version>2.7</version>
68                                 <configuration>
69                                         <formats>
70                                                 <format>html</format>
71                                                 <format>xml</format>
72                                         </formats>
73                                 </configuration>
74                         </plugin>
75                         <plugin>
76                                 <groupId>org.apache.maven.plugins</groupId>
77                                 <artifactId>maven-site-plugin</artifactId>
78                                 <version>3.6</version>
79                                 <dependencies>
80                                         <dependency>
81                                                 <groupId>org.apache.maven.wagon</groupId>
82                                                 <artifactId>wagon-webdav-jackrabbit</artifactId>
83                                                 <version>2.10</version>
84                                         </dependency>
85                                 </dependencies>
86                         </plugin>
87
88                         <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> 
89                                 <version>3.0.2</version> </plugin> -->
90
91                         <plugin>
92                                 <groupId>org.apache.maven.plugins</groupId>
93                                 <artifactId>maven-source-plugin</artifactId>
94                                 <version>3.0.0</version>
95                                 <executions>
96                                         <execution>
97                                                 <id>attach-sources</id>
98                                                 <goals>
99                                                         <goal>jar-no-fork</goal>
100                                                 </goals>
101                                         </execution>
102                                 </executions>
103                         </plugin>
104                         <plugin>
105                                 <groupId>org.apache.maven.plugins</groupId>
106                                 <artifactId>maven-release-plugin</artifactId>
107                                 <version>2.5.3</version>
108                                 <configuration>
109                                         <autoVersionSubmodules>true</autoVersionSubmodules>
110                                         <checkModificationExcludes>
111                                         </checkModificationExcludes>
112                                 </configuration>
113                                 <dependencies>
114                                         <dependency>
115                                                 <groupId>org.apache.maven.scm</groupId>
116                                                 <artifactId>maven-scm-provider-gitexe</artifactId>
117                                                 <version>1.9.4</version>
118                                         </dependency>
119                                 </dependencies>
120                         </plugin>
121
122                         <plugin>
123                                 <groupId>org.sonatype.plugins</groupId>
124                                 <artifactId>nexus-staging-maven-plugin</artifactId>
125                                 <extensions>false</extensions>
126                                 <executions>
127                                         <execution>
128                                                 <id>injected-nexus-deploy</id>
129                                                 <phase>none</phase>
130                                         </execution>
131                                 </executions>
132                         </plugin>
133                         <plugin>
134                                 <artifactId>maven-deploy-plugin</artifactId>
135                                 <version>2.8</version>
136                                 <executions>
137                                         <execution>
138                                                 <id>default-deploy</id>
139                                                 <phase>none</phase>
140                                                 <configuration>
141                                                         <skip />
142                                                 </configuration>
143                                         </execution>
144                                 </executions>
145                                 <configuration>
146                                         <skip />
147                                 </configuration>
148                         </plugin>
149                         <plugin>
150                                 <artifactId>maven-dependency-plugin</artifactId>
151                                 <executions>
152                                         <execution>
153                                                 <id>copy</id>
154                                                 <phase>package</phase>
155                                                 <goals>
156                                                         <goal>copy</goal>
157                                                 </goals>
158                                                 <configuration>
159                                                         <outputDirectory>target</outputDirectory>
160                                                         <encoding>UTF-8</encoding>
161                                                         <artifactItems>
162                                                                 <artifactItem>
163                                                                         <groupId>org.onap.dmaap.messagerouter.mirroragent</groupId>
164                                                                         <artifactId>dmaapMMAgent</artifactId>
165                                                                         <version>1.1.1</version>
166                                                                         <destFileName>dmaapMMAgent.jar</destFileName>
167                                                                 </artifactItem>
168                                                         </artifactItems>
169                                                 </configuration>
170                                         </execution>
171                                 </executions>
172                         </plugin>
173               <!-- Copy jar to docker-stage to be included in image -->
174               <plugin>
175                   <artifactId>maven-resources-plugin</artifactId>
176                   <version>2.7</version>
177                   <executions>
178                      <execution>
179                           <id>copy-jar</id>
180                           <phase>install</phase>
181                           <goals>
182                               <goal>copy-resources</goal>
183                           </goals>
184                           <configuration>
185                               <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
186                               <resources>
187                                   <resource>
188                                       <directory>${basedir}/target</directory>
189                                       <includes>
190                                           <include>dmaapMMAgent.jar</include>
191                                           <include>kafka11aaf-jar-with-dependencies.jar</include>
192                                       </includes>
193                                   </resource>
194                               </resources>
195                           </configuration>
196                       </execution>
197                   </executions>
198               </plugin>
199                         <plugin>
200                                 <groupId>org.apache.maven.plugins</groupId>
201                                 <artifactId>maven-assembly-plugin</artifactId>
202                                 <version>2.4.1</version>
203                                 <configuration>
204                                         <!-- get all project dependencies -->
205                                         <descriptorRefs>
206                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
207                                         </descriptorRefs>
208                                         <!-- MainClass in mainfest make a executable jar -->
209                                         <finalName>kafka11aaf</finalName>
210                                 </configuration>
211                                 <executions>
212                                         <execution>
213                                                 <id>make-assembly</id>
214                                                 <!-- bind to the packaging phase -->
215                                                 <phase>package</phase>
216                                                 <goals>
217                                                         <goal>single</goal>
218                                                 </goals>
219                                         </execution>
220                                 </executions>
221                         </plugin>
222
223                 </plugins>
224         </build>
225
226         <properties>
227                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
228                 <timestamp>${maven.build.timestamp}</timestamp>
229         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
230                 <sitePath>/content/sites/site/org/onap/dmaap/kafka0111/${project.artifactId}/${project.version}</sitePath>
231                 <skip.docker.build>true</skip.docker.build>
232                 <skip.docker.push>true</skip.docker.push>
233                 <nexusproxy>https://nexus.onap.org</nexusproxy>
234                 <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
235                 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
236         </properties>
237
238         <!-- Distribution management -->
239         <distributionManagement>
240                 <site>
241                         <id>ecomp-site</id>
242                         <url>dav:${nexusproxy}${sitePath}</url>
243                 </site>
244         </distributionManagement>
245
246         <dependencies>
247                 <dependency>
248                         <groupId>org.onap.aaf.authz</groupId>
249                         <artifactId>aaf-cadi-aaf</artifactId>
250                         <version>2.1.2</version>
251                 </dependency>
252                 <dependency>
253                         <groupId>org.slf4j</groupId>
254                         <artifactId>slf4j-api</artifactId>
255                         <version>1.7.2</version>
256                 </dependency>
257                 <dependency>
258                         <groupId>org.slf4j</groupId>
259                         <artifactId>slf4j-simple</artifactId>
260                         <version>1.7.2</version>
261                         <scope>runtime</scope>
262                 </dependency>
263                 <dependency>
264                         <groupId>org.apache.kafka</groupId>
265                         <artifactId>kafka_2.11</artifactId>
266                         <version>0.11.0.3</version>
267                 </dependency>
268                 <dependency>
269                         <groupId>org.powermock</groupId>
270                         <artifactId>powermock-api-mockito</artifactId>
271                         <version>1.6.4</version>
272                         <scope>test</scope>
273                 </dependency>
274
275                 <dependency>
276                         <groupId>org.powermock</groupId>
277                         <artifactId>powermock-module-junit4</artifactId>
278                         <version>1.6.4</version>
279                         <scope>test</scope>
280                 </dependency>
281
282                 <dependency>
283                         <groupId>org.powermock</groupId>
284                         <artifactId>powermock-module-junit4-rule</artifactId>
285                         <version>1.6.4</version>
286                         <scope>test</scope>
287                 </dependency>
288                 <dependency>
289                         <groupId>org.mockito</groupId>
290                         <artifactId>mockito-core</artifactId>
291                         <version>1.10.19</version>
292                         <scope>test</scope>
293                 </dependency>
294         </dependencies>
295
296         <profiles>
297                 <profile>
298                         <id>docker</id>
299                         <properties>
300                                 <skip.docker.build>false</skip.docker.build>
301                                 <skip.docker.tag>false</skip.docker.tag>
302                                 <skip.docker.push>false</skip.docker.push>
303                         </properties>
304                         <build>
305                 <plugins>
306                     <plugin>
307                         <groupId>org.codehaus.groovy.maven</groupId>
308                         <artifactId>gmaven-plugin</artifactId>
309                         <executions>
310                             <execution>
311                                 <phase>validate</phase>
312                                 <goals>
313                                     <goal>execute</goal>
314                                 </goals>
315                                 <configuration>
316                                     <properties>
317                                         <ver>${project.version}</ver>
318                                         <timestamp>${maven.build.timestamp}</timestamp>
319                                     </properties>
320                                     <source>
321                                         println project.properties['ver'];
322                                         if ( project.properties['ver'].endsWith("-SNAPSHOT") ) {
323                                         project.properties['dockertag1']=project.properties['ver'] + "-latest";
324                                         project.properties['dockertag2']=project.properties['ver'] + "-" + project.properties['timestamp'];
325                                         } else {
326                                         project.properties['dockertag1']=project.properties['ver'] + "-STAGING-latest";
327                                         project.properties['dockertag2']=project.properties['ver'] + "-STAGING-" + project.properties['timestamp'];
328                                         }
329                                         println 'docker tag 1: ' + project.properties['dockertag1'];
330                                         println 'docker tag 2: ' + project.properties['dockertag2'];
331                                     </source>
332                                 </configuration>
333                             </execution>
334                         </executions>
335                     </plugin>
336                     <!-- build docker image -->
337                     <plugin>
338                       <groupId>io.fabric8</groupId>
339                       <artifactId>docker-maven-plugin</artifactId>
340                       <version>0.28.0</version>  
341                       <configuration>
342                           <verbose>${docker.verbose}</verbose>
343                           <apiVersion>${docker.apiVersion}</apiVersion>
344                           <pullRegistry>${docker.pull.registry}</pullRegistry>
345                           <pushRegistry>${docker.push.registry}</pushRegistry>
346                           <images>
347                               <image>                            
348                                   <name>onap/dmaap/kafka01101</name>
349                                   <build>
350                                       <cleanup>try</cleanup>
351                                      <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
352                                      <dockerFile>Dockerfile</dockerFile>
353                                       <tags>
354                                           <tag>${dockertag1}</tag>
355                                           <tag>${dockertag2}</tag>
356                                       </tags>
357                                   </build>
358                               </image>
359                           </images>
360                       </configuration>
361                       <executions>
362                           <execution>
363                               <id>generate-images</id>
364                               <phase>install</phase>
365                               <goals>
366                                   <goal>build</goal>
367                               </goals>
368                           </execution>
369                           <execution>
370                               <id>push-images</id>
371                               <phase>deploy</phase>
372                               <goals>
373                                   <goal>push</goal>
374                               </goals>
375                           </execution>
376                       </executions>
377                    </plugin>
378                 </plugins>
379             </build>
380                 </profile>
381
382         </profiles>
383
384 </project>