Skip to content

Commit 99b67ba

Browse files
authored
fix: ignore repackaged files to fix clirr (#1300)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/java-bigtable/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes #<issue_number_goes_here> ☕️ If you write sample code, please follow the [samples format]( https://github.com/GoogleCloudPlatform/java-docs-samples/blob/main/SAMPLE_FORMAT.md).
1 parent b20cf82 commit 99b67ba

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->
3+
<differences>
4+
<difference>
5+
<differenceType>7005</differenceType>
6+
<className>com/google/cloud/bigtable/stats/StatsRecorderWrapper</className>
7+
<method>*StatsRecorderWrapper*</method>
8+
<to>*StatsRecorder*</to>
9+
</difference>
10+
</differences>

google-cloud-bigtable-stats/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,15 @@
101101
<artifactId>maven-dependency-plugin</artifactId>
102102
<version>3.3.0</version>
103103
</plugin>
104+
<plugin>
105+
<groupId>org.codehaus.mojo</groupId>
106+
<artifactId>clirr-maven-plugin</artifactId>
107+
<configuration>
108+
<excludes>
109+
<exclude>com/google/bigtable/veneer/repackaged/**</exclude>
110+
</excludes>
111+
</configuration>
112+
</plugin>
104113
</plugins>
105114
</build>
106115
</project>

0 commit comments

Comments
 (0)