Skip to content

Commit

Permalink
HBASE-28921 Skip bundling hbase-webapps folder in jars
Browse files Browse the repository at this point in the history
  • Loading branch information
NihalJain committed Oct 17, 2024
1 parent 84f4fb3 commit 8a073b1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
9 changes: 9 additions & 0 deletions hbase-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,15 @@
<skipAssembly>true</skipAssembly>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/hbase-webapps/**</exclude>
</excludes>
</configuration>
</plugin>
<!-- Make a jar and put the sources in the jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
1 change: 1 addition & 0 deletions hbase-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,7 @@
<exclude>log4j.properties</exclude>
<exclude>mapred-queues.xml</exclude>
<exclude>mapred-site.xml</exclude>
<exclude>**/hbase-webapps/**</exclude>
</excludes>
</configuration>
</plugin>
Expand Down
9 changes: 9 additions & 0 deletions hbase-thrift/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,15 @@
<skipAssembly>true</skipAssembly>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/hbase-webapps/**</exclude>
</excludes>
</configuration>
</plugin>
<!-- General ant tasks, bound to different build phases -->
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
Expand Down

0 comments on commit 8a073b1

Please sign in to comment.