Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fix: ignore added interface methods for generated code (#101)
Adds generic ignore rules for added methods to interfaces in the generated code. Fixes #99
- Loading branch information
Showing
with
16 additions
and 39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,34 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html --> | ||
<differences> | ||
<!-- Ignore all new methods in interfaces in the generated code. --> | ||
<difference> | ||
<differenceType>7012</differenceType> | ||
<className>com/google/spanner/admin/database/v1/*</className> | ||
<method>*</method> | ||
</difference> | ||
</differences> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html --> | ||
<differences> | ||
<!-- Ignore all new methods in interfaces in the generated code. --> | ||
<difference> | ||
<differenceType>7012</differenceType> | ||
<className>com/google/spanner/admin/instance/v1/*</className> | ||
<method>*</method> | ||
</difference> | ||
</differences> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,19 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html --> | ||
<differences> | ||
<!-- Ignore all new methods in interfaces in the generated code. --> | ||
<difference> | ||
<differenceType>7012</differenceType> | ||
<className>com/google/spanner/v1/*</className> | ||
<method>*</method> | ||
</difference> | ||
</differences> |