Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
id: claude-review
uses: anthropics/claude-code-action@v1
with:
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
plugin_marketplaces: 'https://github.com/anthropics/claude-code.git'
plugins: 'code-review@claude-code-plugins'
prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
id: claude
uses: anthropics/claude-code-action@v1
with:
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}

# This is an optional setting that allows Claude to read CI results on PRs
additional_permissions: |
Expand All @@ -47,4 +47,3 @@ jobs:
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
# or https://code.claude.com/docs/en/cli-reference for available options
# claude_args: '--allowed-tools Bash(gh pr:*)'

21 changes: 15 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '4.0.2'
id 'org.springframework.boot' version '4.0.3'
id 'io.spring.dependency-management' version '1.1.7'
id "com.github.ben-manes.versions" version "0.53.0"

Expand Down Expand Up @@ -53,10 +53,20 @@ dependencies {

// Thymeleaf extras - Spring Boot 4 manages the version
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.4.0'
// Workaround for GROOVY-11745: Groovy 5.0.4 (shipped with Spring Boot 4.0.3) has a
// regression that causes an NPE when Groovy 5 code calls setters on objects from
// Groovy 4-compiled libraries. This breaks thymeleaf-layout-dialect 3.4.0 (compiled
// with Groovy 4.0.25) in DecorateProcessor.doProcess().
// See: https://issues.apache.org/jira/browse/GROOVY-11745
// See: https://github.com/ultraq/thymeleaf-layout-dialect/issues/251
// TODO: Remove this workaround when Groovy 5.0.5+ is available and adopted by Spring Boot
implementation('nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.4.0') {
exclude group: 'org.apache.groovy'
}
implementation 'org.apache.groovy:groovy:5.0.3'

// OpenAPI (Swagger)
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.9'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.1'

// Runtime dependencies
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
Expand All @@ -69,8 +79,7 @@ dependencies {
// Utility libraries
implementation 'org.passay:passay:1.6.6'
implementation 'com.google.guava:guava:33.5.0-jre'
implementation 'jakarta.validation:jakarta.validation-api:3.1.1'
implementation 'org.hibernate.validator:hibernate-validator:8.0.2.Final'
implementation 'org.hibernate.validator:hibernate-validator'

// Compile-only dependencies
compileOnly 'org.projectlombok:lombok'
Expand All @@ -90,7 +99,7 @@ dependencies {
testImplementation 'io.github.bonigarcia:webdrivermanager:6.3.3'

// OAuth2 Testing dependencies
testImplementation 'com.github.tomakehurst:wiremock-jre8-standalone:3.0.1'
testImplementation 'org.wiremock:wiremock-standalone:3.13.2'
testImplementation 'io.jsonwebtoken:jjwt-api:0.13.0'
testRuntimeOnly 'io.jsonwebtoken:jjwt-impl:0.13.0'
testRuntimeOnly 'io.jsonwebtoken:jjwt-jackson:0.13.0'
Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

services:
mariadb:
image: mariadb:11.6
image: mariadb:12.2
environment:
MARIADB_DATABASE: springuser
MARIADB_USER: springuser
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
26 changes: 14 additions & 12 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 14 additions & 12 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading