Skip to content

Commit

Permalink
build: fix revapi configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
npepinpe committed Dec 29, 2024
1 parent 6125307 commit 3dc4a4d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,14 @@
</configurationFile>
</analysisConfigurationFiles>
<oldVersion>RELEASE</oldVersion>
<pipelineConfiguration>
<transformBlocks>
<block>
<item>intentional-api-changes</item>
<item>revapi.versions</item>
</block>
</transformBlocks>
</pipelineConfiguration>
</configuration>
<dependencies>
<dependency>
Expand Down
23 changes: 10 additions & 13 deletions revapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,20 @@
"patch": {
"classification": {
"BINARY": "NON_BREAKING",
"SOURCE": "BREAKING",
"SOURCE": "NON_BREAKING",
"SEMANTIC": "BREAKING",
"OTHER": "BREAKING"
}
}
},
"onAllowed": {
"classification": {
"BINARY": "EQUIVALENT",
"SOURCE": "EQUIVALENT",
"SEMANTIC": "EQUIVALENT",
"OTHER": "EQUIVALENT"
},
"justification": "Allowed due to semantic versioning rules"
}
}
},
Expand All @@ -62,18 +71,6 @@
"id": "intentional-api-changes",
"configuration": {
"differences": [
{
"ignore": true,
"code": "java.class.removed",
"old": "class io.zeebe.containers.archive.TarExtractor",
"justification": "Class was marked as internal but still publicly accessible in 3.3.0"
},
{
"ignore": true,
"code": "java.class.removed",
"old": "class io.zeebe.containers.clock.ZeebeClockImpl",
"justification": "Class was marked as internal but still publicly accessible in 3.3.0"
}
]
}
}
Expand Down

0 comments on commit 3dc4a4d

Please sign in to comment.