HBASE-20364 ensure jira comment from nightly reflects results of run comment comes...
[hbase.git] / hbase-protocol-shaded / pom.xml
blobba4fa2dae0e8d40507f5b9475ba5ee3a6f2e3c8f
1 <?xml version="1.0"?>
2 <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/xsd/maven-4.0.0.xsd">
3   <!--
4     /**
5      * Licensed to the Apache Software Foundation (ASF) under one
6      * or more contributor license agreements.  See the NOTICE file
7      * distributed with this work for additional information
8      * regarding copyright ownership.  The ASF licenses this file
9      * to you under the Apache License, Version 2.0 (the
10      * "License"); you may not use this file except in compliance
11      * with the License.  You may obtain a copy of the License at
12      *
13      *     http://www.apache.org/licenses/LICENSE-2.0
14      *
15      * Unless required by applicable law or agreed to in writing, software
16      * distributed under the License is distributed on an "AS IS" BASIS,
17      * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18      * See the License for the specific language governing permissions and
19      * limitations under the License.
20      */
21     -->
22   <modelVersion>4.0.0</modelVersion>
23   <parent>
24     <artifactId>hbase-build-configuration</artifactId>
25     <groupId>org.apache.hbase</groupId>
26     <version>3.0.0-SNAPSHOT</version>
27     <relativePath>../hbase-build-configuration</relativePath>
28   </parent>
29   <artifactId>hbase-protocol-shaded</artifactId>
30   <name>Apache HBase - Shaded Protocol</name>
31   <description>Shaded protobuf protocol classes used by HBase internally.</description>
32   <properties>
33     <maven.javadoc.skip>true</maven.javadoc.skip>
34     <!--Version of protobuf that hbase uses internally (we shade our pb)
35          Must match what is out in hbase-thirdparty include.
36          3.5.1-1 is the same as 3.5.1 except includes corrected binaries for el6
37          to work around https://github.com/google/protobuf/issues/4109
38            -->
39     <internal.protobuf.version>3.5.1-1</internal.protobuf.version>
40   </properties>
41   <build>
42     <resources>
43       <resource>
44         <directory>src/main/</directory>
45         <includes>
46           <include>**/*.proto</include>
47         </includes>
48       </resource>
49     </resources>
50     <plugins>
51       <!-- Make a jar and put the sources in the jar -->
52       <plugin>
53         <groupId>org.apache.maven.plugins</groupId>
54         <artifactId>maven-source-plugin</artifactId>
55                   </plugin>
56       <plugin>
57         <!--Make it so assembly:single does nothing in here-->
58         <artifactId>maven-assembly-plugin</artifactId>
59         <configuration>
60           <skipAssembly>true</skipAssembly>
61         </configuration>
62       </plugin>
63       <plugin>
64         <artifactId>maven-surefire-plugin</artifactId>
65         <!-- Always skip the second part executions, since we only run simple unit tests in this module -->
66         <executions>
67           <execution>
68             <id>secondPartTestsExecution</id>
69             <phase>test</phase>
70             <goals>
71               <goal>test</goal>
72             </goals>
73             <configuration>
74               <skip>true</skip>
75             </configuration>
76           </execution>
77         </executions>
78       </plugin>
79       <plugin>
80         <groupId>org.xolstice.maven.plugins</groupId>
81         <artifactId>protobuf-maven-plugin</artifactId>
82         <executions>
83           <execution>
84             <id>compile-protoc</id>
85             <phase>generate-sources</phase>
86             <goals>
87               <goal>compile</goal>
88             </goals>
89             <configuration>
90               <protocArtifact>com.google.protobuf:protoc:${internal.protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
91               <attachProtoSources>false</attachProtoSources>
92               <checkStaleness>true</checkStaleness>
93             </configuration>
94           </execution>
95         </executions>
96       </plugin>
97       <!--Need this old plugin to replace in generated files instances
98            of com.google.protobuf so instead its o.a.h.h.com.google.protobuf.
99            Plugin is old and in google code archive. Here is usage done by
100            anohther: https://github.com/beiliubei/maven-replacer-plugin/wiki/Usage-Guide
101            The mess with the regex in the below is to prevent replacement every time
102            we run mvn install. There is probably a better way of avoiding the
103            double interpolation but this is it for now.
104         -->
105       <plugin>
106         <groupId>com.google.code.maven-replacer-plugin</groupId>
107         <artifactId>replacer</artifactId>
108         <version>1.5.3</version>
109         <executions>
110           <execution>
111             <phase>process-sources</phase>
112             <goals>
113               <goal>replace</goal>
114             </goals>
115           </execution>
116         </executions>
117         <configuration>
118           <basedir>${basedir}/target/generated-sources/</basedir>
119             <includes>
120                 <include>**/*.java</include>
121             </includes>
122             <!-- Ignore errors when missing files, because it means this build
123                  was run with -Dprotoc.skip and there is no -Dreplacer.skip -->
124             <ignoreErrors>true</ignoreErrors>
125             <replacements>
126               <replacement>
127                 <token>([^\.])com.google.protobuf</token>
128                 <value>$1org.apache.hbase.thirdparty.com.google.protobuf</value>
129               </replacement>
130               <replacement>
131                 <token>(public)(\W+static)?(\W+final)?(\W+class)</token>
132                 <value>@javax.annotation.Generated("proto") $1$2$3$4</value>
133               </replacement>
134               <!-- replacer doesn't support anchoring or negative lookbehind -->
135               <replacement>
136                 <token>(@javax.annotation.Generated\("proto"\) ){2}</token>
137                 <value>$1</value>
138               </replacement>
139             </replacements>
140         </configuration>
141       </plugin>
142       <plugin>
143         <groupId>org.apache.maven.plugins</groupId>
144         <artifactId>maven-shade-plugin</artifactId>
145         <executions>
146           <execution>
147             <phase>package</phase>
148             <goals>
149               <goal>shade</goal>
150             </goals>
151             <configuration>
152               <minimizeJar>true</minimizeJar>
153               <shadeSourcesContent>true</shadeSourcesContent>
154               <!-- Causes an NPE until shade 3.0.1.  See MSHADE-247
155               <createSourcesJar>true</createSourcesJar>
156               -->
157               <relocations>
158                 <relocation>
159                   <pattern>com.google.protobuf</pattern>
160                   <shadedPattern>org.apache.hadoop.hbase.shaded.com.google.protobuf</shadedPattern>
161                 </relocation>
162               </relocations>
163               <artifactSet>
164                 <excludes>
165                   <!--Exclude protobuf itself. We get a patched version from hbase-thirdparty.
166                     -->
167                   <exclude>org.apache.hbase.thirdparty:*</exclude>
168                   <exclude>com.google.protobuf:protobuf-java</exclude>
169                   <exclude>com.google.code.findbugs:*</exclude>
170                   <exclude>com.google.errorprone:error_prone_annotations</exclude>
171                   <exclude>com.google.j2objc:j2objc-annotations</exclude>
172                   <exclude>org.codehaus.mojo:animal-sniffer-annotations</exclude>
173                   <exclude>org.codehaus.mojo:animal-sniffer-annotations</exclude>
174                   <exclude>junit:junit</exclude>
175                   <exclude>log4j:log4j</exclude>
176                   <exclude>commons-logging:commons-logging</exclude>
177                   <exclude>org.slf4j:slf4j-api</exclude>
178                   <exclude>org.apache.yetus:audience-annotations</exclude>
179                   <exclude>com.github.stephenc.fingbugs:*</exclude>
180                   <exclude></exclude>
181                 </excludes>
182               </artifactSet>
183             </configuration>
184           </execution>
185         </executions>
186       </plugin>
187       <plugin>
188         <groupId>org.apache.maven.plugins</groupId>
189         <artifactId>maven-checkstyle-plugin</artifactId>
190         <configuration>
191           <failOnViolation>true</failOnViolation>
192         </configuration>
193       </plugin>
194       <plugin>
195         <groupId>net.revelc.code</groupId>
196         <artifactId>warbucks-maven-plugin</artifactId>
197       </plugin>
198     </plugins>
199     <pluginManagement>
200       <plugins>
201         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
202         <plugin>
203           <groupId>org.eclipse.m2e</groupId>
204           <artifactId>lifecycle-mapping</artifactId>
205           <configuration>
206             <lifecycleMappingMetadata>
207               <pluginExecutions>
208                 <pluginExecution>
209                   <pluginExecutionFilter>
210                     <groupId>org.apache.hadoop</groupId>
211                     <artifactId>hadoop-maven-plugins</artifactId>
212                     <versionRange>[2.0.5-alpha,)</versionRange>
213                     <goals>
214                       <goal>protoc</goal>
215                     </goals>
216                   </pluginExecutionFilter>
217                   <action>
218                     <ignore/>
219                   </action>
220                 </pluginExecution>
221                 <pluginExecution>
222                   <pluginExecutionFilter>
223                     <groupId>
224                       com.google.code.maven-replacer-plugin
225                     </groupId>
226                     <artifactId>replacer</artifactId>
227                     <versionRange>[1.5.3,)</versionRange>
228                     <goals>
229                       <goal>replace</goal>
230                     </goals>
231                   </pluginExecutionFilter>
232                   <action>
233                     <execute>
234                      <runOnIncremental>false</runOnIncremental>
235                     </execute>
236                   </action>
237                 </pluginExecution>
238               </pluginExecutions>
239             </lifecycleMappingMetadata>
240           </configuration>
241         </plugin>
242       </plugins>
243     </pluginManagement>
244   </build>
245   <dependencies>
246     <!--BE CAREFUL! Any dependency added here needs to be
247           excluded above in the shade plugin else the dependency
248           will get bundled-->
249     <!-- Intra-project dependencies -->
250     <dependency>
251       <groupId>org.apache.hbase.thirdparty</groupId>
252       <artifactId>hbase-shaded-protobuf</artifactId>
253     </dependency>
254     <dependency>
255       <groupId>junit</groupId>
256       <artifactId>junit</artifactId>
257       <scope>test</scope>
258     </dependency>
259     <dependency>
260       <groupId>org.apache.htrace</groupId>
261       <artifactId>htrace-core4</artifactId>
262     </dependency>
263   </dependencies>
264   <profiles>
265     <!-- Skip the tests in this module -->
266     <profile>
267       <id>skip-protocol-shaded-tests</id>
268       <activation>
269         <property>
270           <name>skip-protocol-shaded-tests</name>
271         </property>
272       </activation>
273       <properties>
274         <surefire.skipFirstPart>true</surefire.skipFirstPart>
275         <surefire.skipSecondPart>true</surefire.skipSecondPart>
276       </properties>
277     </profile>
278   </profiles>
279 </project>