Skip to content

Commit c2d8e95

Browse files
authored
fix: executor framework changes skipped in clirr checks, and added exception for partition methods in admin class (#3000)
1 parent 1673fd7 commit c2d8e95

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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>7012</differenceType>
6+
<className>com/google/spanner/admin/instance/v1/InstanceAdminGrpc$AsyncService</className>
7+
<method>*InstancePartition*(*)</method>
8+
</difference>
9+
</differences>

proto-google-cloud-spanner-executor-v1/pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@
6565
<groupId>org.codehaus.mojo</groupId>
6666
<artifactId>flatten-maven-plugin</artifactId>
6767
</plugin>
68+
<plugin>
69+
<groupId>org.codehaus.mojo</groupId>
70+
<artifactId>clirr-maven-plugin</artifactId>
71+
<configuration>
72+
<!-- Exclude (public) classes in this internal package -->
73+
<excludes>com/google/spanner/executor/v1/**</excludes>
74+
</configuration>
75+
</plugin>
6876
</plugins>
6977
</build>
7078
</project>

0 commit comments

Comments
 (0)