Skip to content

Commit 1a646b7

Browse files
committed
Fix Revapi configuration issues
- change exclusion pattern to also exclude root package - exclude native-protocol and Simulacron
1 parent 9998ec8 commit 1a646b7

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

core/revapi.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
"packages": {
88
"regex": true,
99
"exclude": [
10-
"com\\.datastax\\.oss\\.driver\\.internal\\..*",
11-
"com\\.datastax\\.oss\\.driver\\.shaded\\..*"
10+
"com\\.datastax\\.oss\\.protocol\\.internal(\\..+)?",
11+
"com\\.datastax\\.oss\\.driver\\.internal(\\..+)?",
12+
"com\\.datastax\\.oss\\.driver\\.shaded(\\..+)?"
1213
]
1314
}
1415
}

query-builder/revapi.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
"packages": {
88
"regex": true,
99
"exclude": [
10-
"com\\.datastax\\.oss\\.driver\\.internal\\..*",
11-
"com\\.datastax\\.oss\\.driver\\.shaded\\..*",
10+
"com\\.datastax\\.oss\\.protocol\\.internal(\\..+)?",
11+
"com\\.datastax\\.oss\\.driver\\.internal(\\..+)?",
12+
"com\\.datastax\\.oss\\.driver\\.shaded(\\..+)?",
1213
// Don't re-check sibling modules that this module depends on
13-
"com\\.datastax\\.oss\\.driver\\.api\\.core\\..*"
14+
"com\\.datastax\\.oss\\.driver\\.api\\.core(\\..+)?"
1415
]
1516
}
1617
}

test-infra/revapi.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
"packages": {
88
"regex": true,
99
"exclude": [
10-
"com\\.datastax\\.oss\\.driver\\.internal\\..*",
11-
"com\\.datastax\\.oss\\.driver\\.shaded\\..*",
10+
"com\\.datastax\\.oss\\.protocol\\.internal(\\..+)?",
11+
"com\\.datastax\\.oss\\.driver\\.internal(\\..+)?",
12+
"com\\.datastax\\.oss\\.driver\\.shaded(\\..+)?",
13+
"com\\.datastax\\.oss\\.simulacron(\\..+)?",
1214
// Don't re-check sibling modules that this module depends on
13-
"com\\.datastax\\.oss\\.driver\\.api\\.core\\..*"
15+
"com\\.datastax\\.oss\\.driver\\.api\\.core(\\..+)?"
1416
]
1517
}
1618
}

0 commit comments

Comments
 (0)