Skip to content

Commit

Permalink
Properly name dependency smallrye-common-annotation (#518)
Browse files Browse the repository at this point in the history
"Smallrye" is a whole bunch of projects, this change updates the dependency name to match the actual artifact.
  • Loading branch information
snazy authored Dec 10, 2024
1 parent 2218e60 commit 426f5eb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion extension/persistence/eclipselink/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
implementation(libs.eclipselink)
implementation(platform(libs.dropwizard.bom))
implementation(libs.jakarta.inject.api)
implementation(libs.smallrye)
implementation(libs.smallrye.common.annotation)
implementation("io.dropwizard:dropwizard-jackson")
val eclipseLinkDeps: String? = project.findProperty("eclipseLinkDeps") as String?
eclipseLinkDeps?.let {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ opentelemetry-semconv = { module = "io.opentelemetry.semconv:opentelemetry-semco
prometheus-metrics-exporter-servlet-jakarta = { module = "io.prometheus:prometheus-metrics-exporter-servlet-jakarta", version = "1.3.0" }
s3mock-testcontainers = { module = "com.adobe.testing:s3mock-testcontainers", version = "3.11.0" }
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
smallrye-common-annotation = { module = "io.smallrye.common:smallrye-common-annotation", version = "2.9.0" }
spotbugs-annotations = { module = "com.github.spotbugs:spotbugs-annotations", version = "4.8.5" }
swagger-annotations = { module = "io.swagger:swagger-annotations", version.ref = "swagger" }
swagger-jaxrs = { module = "io.swagger:swagger-jaxrs", version.ref = "swagger" }
testcontainers-bom = { module = "org.testcontainers:testcontainers-bom", version = "1.20.3" }
threeten-extra = { module = "org.threeten:threeten-extra", version = "1.8.0" }
smallrye = { module = "io.smallrye.config:smallrye-config", version = "3.10.2" }

[plugins]
openapi-generator = { id = "org.openapi.generator", version = "7.6.0" }
Expand Down
2 changes: 1 addition & 1 deletion polaris-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dependencies {
implementation(libs.swagger.jaxrs)
implementation(libs.jakarta.inject.api)
implementation(libs.jakarta.validation.api)
implementation(libs.smallrye)
implementation(libs.smallrye.common.annotation)

implementation("org.apache.iceberg:iceberg-aws")
implementation(platform(libs.awssdk.bom))
Expand Down
2 changes: 1 addition & 1 deletion polaris-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
exclude("org.apache.zookeeper", "zookeeper")
}
implementation(libs.hadoop.hdfs.client)
implementation(libs.smallrye)
implementation(libs.smallrye.common.annotation)

implementation(platform(libs.dropwizard.bom))
implementation("io.dropwizard:dropwizard-core")
Expand Down

0 comments on commit 426f5eb

Please sign in to comment.