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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Spring Boot Jakarta to 3.0.0 release #2389

Merged
merged 1 commit into from
Nov 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

### Dependencies

- Update Spring Boot Jakarta to Spring Boot 3.0.0 ([#2389](https://github.com/getsentry/sentry-java/pull/2389))
- Bump Spring Boot to 2.7.5 ([#2383](https://github.com/getsentry/sentry-java/pull/2383))

## 6.8.0
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Config {
val kotlinStdLib = "stdlib-jdk8"

val springBootVersion = "2.7.5"
val springBoot3Version = "3.0.0-RC2"
val springBoot3Version = "3.0.0"
val kotlinCompatibleLanguageVersion = "1.4"

val composeVersion = "1.1.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ java.targetCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
maven {
url = uri("https://repo.spring.io/plugins-snapshot")
}
maven { url = uri("https://repo.spring.io/milestone") }
}

val jakartaTransform by configurations.creating
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ java.targetCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
maven {
url = uri("https://repo.spring.io/plugins-snapshot")
}
maven { url = uri("https://repo.spring.io/milestone") }
}

dependencyManagement {
Expand Down
1 change: 0 additions & 1 deletion sentry-spring-boot-starter-jakarta/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ plugins {

repositories {
mavenCentral()
maven { url = uri("https://repo.spring.io/milestone") }
}

the<DependencyManagementExtension>().apply {
Expand Down
1 change: 0 additions & 1 deletion sentry-spring-jakarta/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ plugins {

repositories {
mavenCentral()
maven { url = uri("https://repo.spring.io/milestone") }
}

the<DependencyManagementExtension>().apply {
Expand Down
1 change: 0 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

pluginManagement {
repositories {
maven { url = uri("https://repo.spring.io/milestone") }
mavenCentral()
gradlePluginPortal()
}
Expand Down