Unify DMaaP Data Router image creation
[dmaap/datarouter.git] / pom.xml
1 <!--
2   ============LICENSE_START==================================================
3   * org.onap.dmaap
4   * ===========================================================================
5   * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6   * Modifications Copyright (C) 2018 Nokia. All rights reserved.
7   * ===========================================================================
8   * Licensed under the Apache License, Version 2.0 (the "License");
9   * you may not use this file except in compliance with the License.
10   * You may obtain a copy of the License at
11   *
12    *      http://www.apache.org/licenses/LICENSE-2.0
13   *
14    * Unless required by applicable law or agreed to in writing, software
15   * distributed under the License is distributed on an "AS IS" BASIS,
16   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   * See the License for the specific language governing permissions and
18   * limitations under the License.
19   * ============LICENSE_END====================================================
20   *
21   * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   *
23 -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26     <groupId>org.onap.dmaap.datarouter</groupId>
27     <artifactId>parent</artifactId>
28     <name>dmaap-datarouter</name>
29     <version>1.0.3-SNAPSHOT</version>
30     <packaging>pom</packaging>
31     <url>https://github.com/att/DMAAP_DATAROUTER</url>
32     <parent>
33         <groupId>org.onap.oparent</groupId>
34         <artifactId>oparent</artifactId>
35         <version>1.1.0</version>
36     </parent>
37     <properties>
38         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39         <maven.compiler.source>1.8</maven.compiler.source>
40         <maven.compiler.target>1.8</maven.compiler.target>
41         <sonar.language>java</sonar.language>
42         <sonar.skip>false</sonar.skip>
43         <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
44         <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
45         <sonar.jacoco.reportPaths>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPaths>
46         <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
47         <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
48         <sonar.projectVersion>${project.version}</sonar.projectVersion>
49         <jetty.version>9.3.8.RC0</jetty.version>
50         <jetty.websocket.version>8.2.0.v20160908</jetty.websocket.version>
51         <javax.mail-api.version>1.5.5</javax.mail-api.version>
52         <dom4j.version>1.6</dom4j.version>
53         <xml-apis.version>1.4.01</xml-apis.version>
54         <thoughtworks.version>1.4.10</thoughtworks.version>
55         <google.guava.version>26.0-jre</google.guava.version>
56         <qos.logback.version>1.2.3</qos.logback.version>
57         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
58         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
59         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
60         <sitePath>/content/sites/site/org/onap/dmaap/datarouter/${project.artifactId}/${project.version}</sitePath>
61         <docker.maven.plugin.version>1.0.0</docker.maven.plugin.version>
62         <skip.docker.build>true</skip.docker.build>
63         <skip.docker.tag>true</skip.docker.tag>
64         <skip.docker.push>true</skip.docker.push>
65         <commons-codec.version>1.10</commons-codec.version>
66     </properties>
67     <modules>
68         <module>datarouter-prov</module>
69         <module>datarouter-node</module>
70         <module>datarouter-subscriber</module>
71     </modules>
72     <build>
73         <plugins>
74             <plugin>
75                 <groupId>com.spotify</groupId>
76                 <artifactId>docker-maven-plugin</artifactId>
77                 <version>${docker.maven.plugin.version}</version>
78                 <configuration>
79                     <skipDockerBuild>true</skipDockerBuild>
80                 </configuration>
81             </plugin>
82             <plugin>
83                 <groupId>org.sonatype.plugins</groupId>
84                 <artifactId>nexus-staging-maven-plugin</artifactId>
85                 <version>1.6.7</version>
86                 <extensions>true</extensions>
87                 <configuration>
88                     <nexusUrl>${onap.nexus.url}</nexusUrl>
89                     <stagingProfileId>176c31dfe190a</stagingProfileId>
90                     <serverId>ecomp-staging</serverId>
91                 </configuration>
92             </plugin>
93             <plugin>
94                 <groupId>org.jacoco</groupId>
95                 <artifactId>jacoco-maven-plugin</artifactId>
96                 <version>${jacoco.version}</version>
97                 <configuration>
98                     <excludes>
99                         <exclude>**/gen/**</exclude>
100                         <exclude>**/generated-sources/**</exclude>
101                         <exclude>**/yang-gen/**</exclude>
102                         <exclude>**/pax/**</exclude>
103                     </excludes>
104                 </configuration>
105                 <executions>
106                     <execution>
107                         <id>pre-unit-test</id>
108                         <goals>
109                             <goal>prepare-agent</goal>
110                         </goals>
111                         <configuration>
112                             <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
113                             <propertyName>surefireArgLine</propertyName>
114                         </configuration>
115                     </execution>
116                     <execution>
117                         <id>post-unit-test</id>
118                         <phase>test</phase>
119                         <goals>
120                             <goal>report</goal>
121                         </goals>
122                         <configuration>
123                             <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
124                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
125                         </configuration>
126                     </execution>
127                     <execution>
128                         <id>pre-integration-test</id>
129                         <phase>pre-integration-test</phase>
130                         <goals>
131                             <goal>prepare-agent</goal>
132                         </goals>
133                         <configuration>
134                             <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
135                             <propertyName>failsafeArgLine</propertyName>
136                         </configuration>
137                     </execution>
138                     <execution>
139                         <id>post-integration-test</id>
140                         <phase>post-integration-test</phase>
141                         <goals>
142                             <goal>report</goal>
143                         </goals>
144                         <configuration>
145                             <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
146                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
147                         </configuration>
148                     </execution>
149                 </executions>
150             </plugin>
151         </plugins>
152     </build>
153     <distributionManagement>
154         <repository>
155             <id>ecomp-releases</id>
156             <name>DR Release Repository</name>
157             <url>${onap.nexus.url}${releaseNexusPath}</url>
158         </repository>
159         <snapshotRepository>
160             <id>ecomp-snapshots</id>
161             <name>DR Snapshot Repository</name>
162             <url>${onap.nexus.url}${snapshotNexusPath}</url>
163         </snapshotRepository>
164         <site>
165             <id>ecomp-site</id>
166             <url>dav:${onap.nexus.url}${sitePath}</url>
167         </site>
168     </distributionManagement>
169     <pluginRepositories>
170         <pluginRepository>
171             <id>onap-plugin-snapshots</id>
172             <url>${onap.nexus.url}${snapshotNexusPath}</url>
173         </pluginRepository>
174     </pluginRepositories>
175 </project>