We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dressca-backend\dependencies.gradle の spring-boot-starter-xxx の定義は以下のようにバージョンを指定しない状態が望ましいと考えられます(バージョンを明示しないことにより、 Spring Boot のバージョンに応じて適切なバージョンが選択される認識です)。
supportDependencies = [ spring_boot_starter : "org.springframework.boot:spring-boot-starter", spring_boot_starter_test : "org.springframework.boot:spring-boot-starter-test", spring_boot_starter_batch : "org.springframework.boot:spring-boot-starter-batch", spring_boot_starter_log4j2 : "org.springframework.boot:spring-boot-starter-log4j2", spring_boot_starter_validation : "org.springframework.boot:spring-boot-starter-validation", spring_boot_starter_web : "org.springframework.boot:spring-boot-starter-web", spring_boot_starter_actuator : "org.springframework.boot:spring-boot-starter-actuator", spring_boot_security_starter : "org.springframework.boot:spring-boot-starter-security",
dressca-backend\dependencies.gradle では、spring-boot-starter-xxx の中でも spring-boot-starter-security のみバージョンが明示されています。
dressca-backend\dependencies.gradle
supportDependencies = [ spring_boot_starter : "org.springframework.boot:spring-boot-starter", spring_boot_starter_test : "org.springframework.boot:spring-boot-starter-test", spring_boot_starter_batch : "org.springframework.boot:spring-boot-starter-batch", spring_boot_starter_log4j2 : "org.springframework.boot:spring-boot-starter-log4j2", spring_boot_starter_validation : "org.springframework.boot:spring-boot-starter-validation", spring_boot_starter_web : "org.springframework.boot:spring-boot-starter-web", spring_boot_starter_actuator : "org.springframework.boot:spring-boot-starter-actuator", spring_boot_security_starter : "org.springframework.boot:spring-boot-starter-security:$springSecurity",
上のような記述では、 spring-boot-starter-security のみバージョンを手動更新しなければいけない状態にあると思われます。
なお、 samples/azure-ad-b2c-sample/auth-backend/dependencies.gradle についても確認が必要と考えます。
$springSecurity
不要と思われるので記載を割愛します。
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
期待する動作
dressca-backend\dependencies.gradle の spring-boot-starter-xxx の定義は以下のようにバージョンを指定しない状態が望ましいと考えられます(バージョンを明示しないことにより、 Spring Boot のバージョンに応じて適切なバージョンが選択される認識です)。
現在の動作
dressca-backend\dependencies.gradle
では、spring-boot-starter-xxx の中でも spring-boot-starter-security のみバージョンが明示されています。上のような記述では、 spring-boot-starter-security のみバージョンを手動更新しなければいけない状態にあると思われます。
なお、 samples/azure-ad-b2c-sample/auth-backend/dependencies.gradle についても確認が必要と考えます。
考えられる解決策
$springSecurity
を削除します。再現手順
環境
不要と思われるので記載を割愛します。
ログ・スタックトレース
No response
確認
The text was updated successfully, but these errors were encountered: