1 <!--* ============LICENSE_START====================================================
2 * ===========================================================================
4 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
5 * ===========================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 * ============LICENSE_END====================================================
19 <project xmlns="http://maven.apache.org/POM/4.0.0"
20 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 <groupId>org.onap.dmaap.buscontroller</groupId>
24 <artifactId>parent</artifactId>
25 <version>${revision}</version>
26 <name>dmaap-buscontroller</name>
27 <packaging>pom</packaging>
30 <groupId>org.onap.oparent</groupId>
31 <artifactId>oparent</artifactId>
32 <version>3.3.3</version>
36 <revision>2.0.12-SNAPSHOT</revision>
37 <multiproject.basedir>${basedir}</multiproject.basedir>
38 <docker.maven.plugin.version>1.0.0</docker.maven.plugin.version>
39 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40 <skip.docker.build>false</skip.docker.build>
41 <skip.docker.tag>false</skip.docker.tag>
42 <skip.docker.push>false</skip.docker.push>
43 <docker.verbose>true</docker.verbose>
44 <docker.apiVersion>2.2.54</docker.apiVersion>
45 <io.fabric8.version>0.33.0</io.fabric8.version>
46 <gmaven-plugin.version>1.5</gmaven-plugin.version>
47 <maven.compiler.source>11</maven.compiler.source>
48 <maven.compiler.target>11</maven.compiler.target>
49 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
50 <docker.image.root>onap/dmaap/</docker.image.root>
51 <nexusproxy>https://nexus.onap.org</nexusproxy>
52 <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
53 <timestamp>${maven.build.timestamp}</timestamp>
54 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
55 <sonar.language>java</sonar.language>
56 <sonar.skip>false</sonar.skip>
57 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports
58 </sonar.surefire.reportsPath>
59 <sonar.projectVersion>${project.version}</sonar.projectVersion>
60 <sitePath>/content/sites/site/org/onap/dmaap/buscontroller/${project.artifactId}/${revision}
64 <module>dmaap-bc</module>
65 <module>dbc-client</module>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-surefire-plugin</artifactId>
79 ${surefireArgLine} --illegal-access=permit
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-failsafe-plugin</artifactId>
88 --illegal-access=permit
93 <groupId>org.codehaus.mojo</groupId>
94 <artifactId>flatten-maven-plugin</artifactId>
95 <version>1.0.1</version>
97 <updatePomFile>true</updatePomFile>
98 <outputDirectory>target</outputDirectory>
103 <phase>process-resources</phase>
111 <artifactId>maven-checkstyle-plugin</artifactId>
114 <id>onap-java-style</id>
116 <consoleOutput>false</consoleOutput>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-compiler-plugin</artifactId>
125 <source>${maven.compiler.source}</source>
126 <target>${maven.compiler.target}</target>
130 <groupId>org.apache.maven.plugins</groupId>
131 <artifactId>maven-source-plugin</artifactId>
132 <version>2.2.1</version>
135 <id>attach-sources</id>
137 <goal>jar-no-fork</goal>
143 <groupId>org.codehaus.gmaven</groupId>
144 <artifactId>gmaven-plugin</artifactId>
145 <version>${gmaven-plugin.version}</version>
148 <phase>validate</phase>
154 <ver>${project.version}</ver>
156 <!-- Setup image tags per https://wiki.onap.org/display/DW/Independent+Versioning+and+Release+Process#IndependentVersioningandReleaseProcess-StandardizedDockerTagging -->
158 println 'ver: ' + project.properties['ver'];
159 if (project.properties['ver'].endsWith("-SNAPSHOT")) {
160 project.properties['dockertag1'] = project.properties['ver'] + "-latest";
161 project.properties['dockertag2'] = project.properties['ver'] + "-" + project.properties['timestamp'];
163 project.properties['dockertag1'] = project.properties['ver'] + "-STAGING-latest";
164 project.properties['dockertag2'] = project.properties['ver'] + "-STAGING-" + project.properties['timestamp'];
166 println 'docker tag 1: ' + project.properties['dockertag1'];
167 println 'docker tag 2: ' + project.properties['dockertag2'];
174 <groupId>io.fabric8</groupId>
175 <artifactId>docker-maven-plugin</artifactId>
176 <version>${io.fabric8.version}</version>
178 <skipBuild>${skip.docker.build}</skipBuild>
179 <verbose>${docker.verbose}</verbose>
180 <apiVersion>${docker.apiVersion}</apiVersion>
181 <pullRegistry>${docker.pull.registry}</pullRegistry>
182 <pushRegistry>${docker.push.registry}</pushRegistry>
186 <groupId>org.codehaus.mojo</groupId>
187 <artifactId>properties-maven-plugin</artifactId>
188 <version>1.0.0</version>
191 <phase>validate</phase>
193 <goal>read-project-properties</goal>
197 <file>../version.properties</file>
208 <id>onap-plugin-snapshots</id>
209 <url>${onap.nexus.url}${snapshotNexusPath}</url>
211 </pluginRepositories>