Revert "Amend HBASE-25032: Compliation fix for TestRSGroupsKillRS"
[hbase.git] / hbase-resource-bundle / pom.xml
blob162ceda007d85c9899a0fa500d00606a42e4ac8e
1 <?xml version="1.0"?>
2 <project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://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>2.4.3-SNAPSHOT</version>
27     <relativePath>../hbase-build-configuration</relativePath>
28   </parent>
30   <artifactId>hbase-resource-bundle</artifactId>
31   <name>Apache HBase - Resource Bundle</name>
32   <description>licensing info for use when bundling works</description>
34   <properties>
35     <!-- Don't make a test-jar -->
36     <maven.test.skip>true</maven.test.skip>
37   </properties>
38   <!-- hack until we break things out into a project pom and parent pom -->
39   <dependencies />
40   <build>
41     <plugins>
42       <plugin>
43           <!--Make it so assembly:single does nothing in here-->
44           <artifactId>maven-assembly-plugin</artifactId>
45           <configuration>
46               <skipAssembly>true</skipAssembly>
47           </configuration>
48       </plugin>
49       <plugin>
50         <groupId>org.apache.maven.plugins</groupId>
51         <artifactId>maven-remote-resources-plugin</artifactId>
52         <executions>
53           <execution>
54             <id>build-hbase-resource-bundle</id>
55             <goals>
56               <goal>bundle</goal>
57             </goals>
58             <configuration>
59               <includes>
60                 <include>META-INF/LICENSE.vm</include>
61                 <include>META-INF/NOTICE.vm</include>
62               </includes>
63             </configuration>
64           </execution>
65         </executions>
66       </plugin>
67     </plugins>
68   </build>
69 </project>