Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(dependency): replace javax.inject with jakarta.inject and javax with jakarta #1217

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kork-eureka/kork-eureka.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
implementation project(":kork-core")
implementation project(":kork-exceptions")

implementation "javax.inject:javax.inject:1"
implementation "jakarta.inject:jakarta.inject-api:1.0"
implementation "org.springframework.boot:spring-boot-autoconfigure"
implementation "org.springframework.boot:spring-boot-starter-actuator"

Expand Down
2 changes: 1 addition & 1 deletion kork-plugins/kork-plugins.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-actuator"
implementation("com.google.guava:guava")
implementation "javax.inject:javax.inject:1"
implementation "jakarta.inject:jakarta.inject-api:1.0"

implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-properties")
Expand Down
2 changes: 1 addition & 1 deletion kork-web/kork-web.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
api "com.squareup.retrofit:retrofit"

implementation "com.google.guava:guava"
implementation "javax.inject:javax.inject:1"
implementation "jakarta.inject:jakarta.inject-api:1.0"
implementation("com.netflix.spectator:spectator-web-spring") {
// exclude transitives since this brings in a newer version of spring (boot)
// dependencies than we're compatible with (2.2.x for spring boot and 5.2.x
Expand Down
Loading