Skip to content

Commit 2843fc2

Browse files
authored
Verify extension modules' api compatibility
In previous versions, we added validation for the runtime module and started publishing api descriptors for the extension modules.
1 parent a728976 commit 2843fc2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

extensions/protokt-extensions-api/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
enablePublishing()
17-
trackKotlinApiCompatibility(validate = false)
17+
trackKotlinApiCompatibility()
1818

1919
dependencies {
2020
compileOnly(libraries.protobuf)

extensions/protokt-extensions-proto-based/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply(plugin = "kotlin-kapt")
1919

2020
localProtokt()
2121
enablePublishing()
22-
trackKotlinApiCompatibility(validate = false)
22+
trackKotlinApiCompatibility()
2323

2424
dependencies {
2525
implementation(project(":extensions:protokt-extensions-api"))

extensions/protokt-extensions-simple/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
apply(plugin = "kotlin-kapt")
1717

1818
enablePublishing()
19-
trackKotlinApiCompatibility(validate = false)
19+
trackKotlinApiCompatibility()
2020

2121
dependencies {
2222
implementation(project(":protokt-core"))

protokt-core/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ localProtokt()
2121
pureKotlin()
2222
enablePublishing()
2323
compatibleWithAndroid()
24-
trackKotlinApiCompatibility(validate = false)
24+
trackKotlinApiCompatibility()
2525

2626
dependencies {
2727
api(project(":extensions:protokt-extensions-api"))

0 commit comments

Comments
 (0)