Skip to content

Commit

Permalink
Hotfix release v5.11.2 (reportportal#312)
Browse files Browse the repository at this point in the history
* Move web models from commons model to auth service

* Add ROLES_ATTRIBUTE to sync SAML roles

* Add flow for  providing Administrator role

* Add docker-compose.yml for local testing

* Add JavaDoc params

* Add Lombok support

* Add no-build-cache for Java build
  • Loading branch information
raikbitters authored Jun 6, 2024
1 parent 33e440d commit 90fde59
Show file tree
Hide file tree
Showing 14 changed files with 663 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ ARG APP_VERSION
WORKDIR /usr/app
COPY . /usr/app
RUN if [ "${RELEASE_MODE}" = true ]; then \
gradle build --exclude-task test \
gradle build --no-build-cache --exclude-task test \
-PreleaseMode=true \
-Dorg.gradle.project.version=${APP_VERSION}; \
else gradle build --exclude-task test -Dorg.gradle.project.version=${APP_VERSION}; fi
else gradle build --no-build-cache --exclude-task test -Dorg.gradle.project.version=${APP_VERSION}; fi

# For ARM build use flag: `--platform linux/arm64`
FROM --platform=$BUILDPLATFORM amazoncorretto:11.0.20
Expand Down
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ dependencies {
implementation 'org.hibernate:hibernate-core:5.4.24.Final'
implementation 'org.springframework:spring-core:5.3.30'
implementation "com.rabbitmq:http-client:5.2.0"

// Lombok
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
}

processResources {
Expand Down
Loading

0 comments on commit 90fde59

Please sign in to comment.