-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #562 from CDOT-CV/cdot-release_2025-q1
Spring Kafka Integration, Partial J2735 2024 Compatibility, and Developer Experience Enhancements
- Loading branch information
Showing
675 changed files
with
67,516 additions
and
18,708 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: checkstyle | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
checkstyle: | ||
name: runner / checkstyle | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dbelyaev/[email protected] | ||
with: | ||
github_token: ${{ secrets.github_token }} | ||
reporter: github-pr-review | ||
level: warning | ||
checkstyle_config: './checkstyle.xml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM maven:3.8-eclipse-temurin-21-alpine as builder | ||
MAINTAINER [email protected] | ||
FROM maven:3.8-eclipse-temurin-21-alpine AS builder | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
WORKDIR /home | ||
|
||
|
@@ -20,13 +20,13 @@ FROM eclipse-temurin:21-jre-alpine | |
|
||
WORKDIR /home | ||
|
||
COPY --from=builder /home/jpo-ode-svcs/src/main/resources/application.properties /home | ||
COPY --from=builder /home/jpo-ode-svcs/src/main/resources/application.yaml /home | ||
COPY --from=builder /home/jpo-ode-svcs/src/main/resources/logback.xml /home | ||
COPY --from=builder /home/jpo-ode-svcs/target/jpo-ode-svcs.jar /home | ||
COPY ./scripts/startup_jpoode.sh /home | ||
|
||
RUN apk add openssh | ||
RUN apk add openrc | ||
RUN rc-update add sshd | ||
RUN apk --no-cache add openssh \ | ||
&& apk --no-cache add openrc \ | ||
&& rc-update add sshd | ||
|
||
ENTRYPOINT ["sh", "/home/startup_jpoode.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.