File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9494 </execution >
9595 </executions >
9696 </plugin >
97+ <plugin >
98+ <groupId >org.revapi</groupId >
99+ <artifactId >revapi-maven-plugin</artifactId >
100+ <configuration >
101+ <skip >true</skip >
102+ </configuration >
103+ </plugin >
97104 </plugins >
98105 </build >
99106</project >
Original file line number Diff line number Diff line change 1+ // Configures Revapi (https://revapi.org/getting-started.html) to check API compatibility between
2+ // successive driver versions.
3+ {
4+ "revapi" : {
5+ "java" : {
6+ "filter" : {
7+ "packages" : {
8+ "regex" : true ,
9+ "exclude" : [
10+ " com\\ .datastax\\ .oss\\ .protocol\\ .internal(\\ ..+)?" ,
11+ " com\\ .datastax\\ .oss\\ .driver\\ .internal(\\ ..+)?" ,
12+ " com\\ .datastax\\ .oss\\ .driver\\ .shaded(\\ ..+)?" ,
13+ " com\\ .datastax\\ .oss\\ .simulacron(\\ ..+)?" ,
14+ // Don't re-check sibling modules that this module depends on
15+ " com\\ .datastax\\ .oss\\ .driver\\ .api\\ .core(\\ ..+)?" ,
16+ " com\\ .datastax\\ .oss\\ .driver\\ .api\\ .querybuilder(\\ ..+)?"
17+ ]
18+ }
19+ }
20+ }
21+ }
22+ }
You can’t perform that action at this time.
0 commit comments