-
Notifications
You must be signed in to change notification settings - Fork 3
Feature ETP-1192: Spring Boot Upgrade to 3.4.8 #194
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
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
// Configure the Java toolchain to ensure consistent Java version across different environments
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
// Using Java toolchain to ensure consistent Java version across different environments
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
// Using Java toolchain to ensure consistent Java version across different environments
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
// Use Java toolchain to ensure consistent Java version across different environments
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
// Using Java toolchain to ensure consistent Java version across different environments
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,7 @@ | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip | ||
| networkTimeout=10000 | ||
| validateDistributionUrl=true | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
sebastianbarrozo marked this conversation as resolved.
Show resolved
Hide resolved
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility and new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility and new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility and new features
set('springCloudVersion', "2024.0.0")
} |
sebastianbarrozo marked this conversation as resolved.
Show resolved
Hide resolved
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.ADOPTIUM
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
// Fallback mechanism
if (!JavaToolchainService.isToolchainAvailable(languageVersion)) {
logger.warn("Java 17 toolchain not available, falling back to system default.")
}
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
// Fallback mechanism
if (!JavaLanguageVersion.of(17).isAvailable()) {
languageVersion = JavaLanguageVersion.of(11) // or another compatible version
}
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
// Fallback mechanism
if (!JavaLanguageVersion.of(17).isAvailable()) {
languageVersion = JavaLanguageVersion.of(11) // or another compatible version
}
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
// Fallback mechanism
if (!javaToolchains.launcherFor { languageVersion = JavaLanguageVersion.of(17) }.isPresent()) {
languageVersion = JavaLanguageVersion.of(11) // Fallback to Java 11 if Java 17 is not available
}
}
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
set('springCloudVersion', "2024.0.0")
// Ensure compatibility with other dependencies and configurations
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
set('springCloudVersion', "2024.0.0") // Ensure compatibility with other dependencies
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
set('springCloudVersion', "2024.0.0")
// Ensure compatibility with other dependencies
// Check for breaking changes in the new version
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
set('springCloudVersion', "2024.0.0") // Ensure compatibility with other dependencies
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
set('springCloudVersion', "2024.0.0")
// Ensure compatibility with other dependencies and run tests to verify functionality.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
set('springCloudVersion', "2024.0.0")
// Ensure compatibility with other dependencies
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-web:3.1.4'
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-web:3.1.4'
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
// Ensure compatibility with other dependencies
set('springCloudVersion', "2024.0.0")
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-web:3.1.4'
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
set('springCloudVersion', "2024.0.0") // Ensure compatibility with other dependencies |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
// Updated to align with the latest Spring Cloud release for compatibility reasons
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
// Updated to align with the latest Spring Cloud release for compatibility reasons
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to align with the latest Spring Cloud release for compatibility reasons
set('springCloudVersion', "2024.0.0")
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
// Updated to align with the latest Spring Cloud release for compatibility reasons
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest Spring Cloud version for compatibility and new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to 2024.0.0 to align with the latest features and improvements
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility and new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to 2024.0.0 to ensure compatibility with the latest features and security updates
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
// Updated to align with the latest features and security patches
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility and new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to 2024.0.0 to ensure compatibility with the latest features and security updates
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to 2024.0.0 to ensure compatibility with the latest features and security updates
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
set('springCloudVersion', "2024.0.0")
// Updated to align with the latest Spring Cloud release for compatibility reasons
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.ADOPTOPENJDK
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.ADOPTOPENJDK
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile) {
options.fork = true
options.forkOptions.executable = 'javac'
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile) {
options.fork = true
options.forkOptions.executable = 'javac'
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile) {
options.fork = true
options.forkOptions.executable = 'javac'
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile) {
options.forkOptions.executable = javaToolchains.launcherFor {
languageVersion = JavaLanguageVersion.of(17)
}.get().executablePath.asFile.absolutePath
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility and new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility and new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
// Fallback mechanism
if (!JavaLanguageVersion.of(17).isAvailable()) {
languageVersion = JavaLanguageVersion.of(11) // or another compatible version
}
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.ADOPTOPENJDK
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile) {
options.fork = true
options.forkOptions.executable = 'javac'
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile) {
options.fork = true
options.forkOptions.executable = 'javac'
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile) {
options.fork = true
options.forkOptions.executable = 'javac'
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile) {
options.fork = true
options.forkOptions.executable = 'javac'
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.ADOPTOPENJDK
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
// Using Java toolchain to ensure consistent Java version across different environments
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
// Use the Java toolchain to specify the Java language version
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
if (!toolchain.languageVersion.isPresent()) {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.ADOPTOPENJDK
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.ADOPTOPENJDK
}
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
ext {
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
}
ext {
// Updated to the latest stable version for compatibility with new features
set('springCloudVersion', "2024.0.0")
includeInDasDependencies = project.hasProperty("exclude.entities.jar") ? !project.property("exclude.entities.jar") : false
} |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
if (!toolchain.languageVersion.isPresent()) {
sourceCompatibility = JavaVersion.VERSION_17
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
// Use the Java toolchain to specify the language version for better compatibility and flexibility
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
// Use toolchain to specify the Java language version for better compatibility and flexibility
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
// Fallback to the system JDK if the specified version is not available
if (!toolchain.languageVersion.isPresent()) {
languageVersion = JavaLanguageVersion.of(System.getProperty("java.version").split("\\.")[0].toInteger())
}
}
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile) {
options.fork = true
options.forkOptions.executable = 'javac'
}
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GPT Review for build.gradleReview
Code feedback
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
// Fallback to system JDK if the specified version is not available
if (!JavaToolchainService.isToolchainAvailable(languageVersion)) {
languageVersion = JavaLanguageVersion.of(System.getProperty("java.version"))
}
}
} |
Uh oh!
There was an error while loading. Please reload this page.