From ee08c56a34ea6ceeb7fa476d6b09650a9cb6e996 Mon Sep 17 00:00:00 2001 From: Swetank Mohanty Date: Mon, 17 Jun 2024 19:00:38 +0530 Subject: [PATCH] Merge with main and disable GitHub Actions (#7) * Added GitHub Actions for Maven build and updated README * Change to project repository key in badges * Added badges for monitoring repository and release activity * [no ci] Added modules for project artifacts * Added utility methods for LocalDate and LocalDateTime and corresponding test cases * [no ci] Removed temporary module and merged code into main module * Create tech stack docs (techstack.yml and techstack.md) (#2) (#3) * Create techstack.yml * Create techstack.md --------- Co-authored-by: stack-file[bot] <147888899+stack-file[bot]@users.noreply.github.com> Co-authored-by: stacksharebot * Added documentation from StackShare * Create tech stack docs (techstack.yml and techstack.md) (#2) (#4) * Create techstack.yml * Create techstack.md --------- Co-authored-by: stack-file[bot] <147888899+stack-file[bot]@users.noreply.github.com> Co-authored-by: stacksharebot * [no ci] Regenerated the techstack files and added the code snippet in README * GitHub Actions workflow commented out for Maven Publish and CodeQL --------- Co-authored-by: stack-file[bot] <147888899+stack-file[bot]@users.noreply.github.com> Co-authored-by: stacksharebot --- .github/workflows/codeql.yml | 164 +++++------ .github/workflows/maven-publish.yml | 50 ++-- .github/workflows/maven.yml | 4 +- README.md | 10 +- techstack.md | 120 +++++++- techstack.yml | 407 +++++++++++++++++++++++++++- 6 files changed, 637 insertions(+), 118 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 622c644..4c5d135 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,91 +1,91 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -# -# ******** NOTE ******** -# We have attempted to detect the languages in your repository. Please check -# the `language` matrix defined below to confirm you have the correct set of -# supported CodeQL languages. -# -name: "CodeQL" +# # For most projects, this workflow file will not need changing; you simply need +# # to commit it to your repository. +# # +# # You may wish to alter this file to override the set of languages analyzed, +# # or to provide custom queries or build logic. +# # +# # ******** NOTE ******** +# # We have attempted to detect the languages in your repository. Please check +# # the `language` matrix defined below to confirm you have the correct set of +# # supported CodeQL languages. +# # +# # name: "CodeQL" -on: - # push: - # branches: [ "main" ] - # pull_request: - # branches: [ "main" ] - schedule: - - cron: '26 2 * * 6' +# # on: + # # push: + # # branches: [ "main" ] + # # pull_request: + # # branches: [ "main" ] + # # schedule: + # # - cron: '26 2 * * 6' -jobs: - analyze: - name: Analyze (${{ matrix.language }}) - # Runner size impacts CodeQL analysis time. To learn more, please see: - # - https://gh.io/recommended-hardware-resources-for-running-codeql - # - https://gh.io/supported-runners-and-hardware-resources - # - https://gh.io/using-larger-runners (GitHub.com only) - # Consider using larger runners or machines with greater resources for possible analysis time improvements. - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} - timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} - permissions: - # required for all workflows - security-events: write +# # jobs: + # # analyze: + # # name: Analyze (${{ matrix.language }}) + # # Runner size impacts CodeQL analysis time. To learn more, please see: + # # - https://gh.io/recommended-hardware-resources-for-running-codeql + # # - https://gh.io/supported-runners-and-hardware-resources + # # - https://gh.io/using-larger-runners (GitHub.com only) + # # Consider using larger runners or machines with greater resources for possible analysis time improvements. + # runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + # timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} + # permissions: + # # required for all workflows + # security-events: write - # required to fetch internal or private CodeQL packs - packages: read + # # required to fetch internal or private CodeQL packs + # packages: read - # only required for workflows in private repositories - actions: read - contents: read + # # only required for workflows in private repositories + # actions: read + # contents: read - strategy: - fail-fast: false - matrix: - include: - # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' - # Use `c-cpp` to analyze code written in C, C++ or both - # Use 'java-kotlin' to analyze code written in Java, Kotlin or both - # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both - # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, - # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. - # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how - # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages - steps: - - name: Checkout repository - uses: actions/checkout@v4 + # strategy: + # fail-fast: false + # matrix: + # include: + # # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' + # # Use `c-cpp` to analyze code written in C, C++ or both + # # Use 'java-kotlin' to analyze code written in Java, Kotlin or both + # # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both + # # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, + # # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. + # # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how + # # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages + # steps: + # - name: Checkout repository + # uses: actions/checkout@v4 - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - build-mode: ${{ matrix.build-mode }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. + # # Initializes the CodeQL tools for scanning. + # - name: Initialize CodeQL + # uses: github/codeql-action/init@v3 + # with: + # languages: ${{ matrix.language }} + # build-mode: ${{ matrix.build-mode }} + # # If you wish to specify custom queries, you can do so here or in a config file. + # # By default, queries listed here will override any specified in a config file. + # # Prefix the list here with "+" to use these queries and those in the config file. - # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs - # queries: security-extended,security-and-quality + # # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # # queries: security-extended,security-and-quality - # If the analyze step fails for one of the languages you are analyzing with - # "We were unable to automatically build your code", modify the matrix above - # to set the build mode to "manual" for that language. Then modify this step - # to build your code. - # ℹī¸ Command-line programs to run using the OS shell. - # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun - - if: matrix.build-mode == 'manual' - shell: bash - run: | - echo 'If you are using a "manual" build mode for one or more of the' \ - 'languages you are analyzing, replace this with the commands to build' \ - 'your code, for example:' - echo ' make bootstrap' - echo ' make release' - exit 1 + # # If the analyze step fails for one of the languages you are analyzing with + # # "We were unable to automatically build your code", modify the matrix above + # # to set the build mode to "manual" for that language. Then modify this step + # # to build your code. + # # ℹī¸ Command-line programs to run using the OS shell. + # # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + # - if: matrix.build-mode == 'manual' + # shell: bash + # run: | + # echo 'If you are using a "manual" build mode for one or more of the' \ + # 'languages you are analyzing, replace this with the commands to build' \ + # 'your code, for example:' + # echo ' make bootstrap' + # echo ' make release' + # exit 1 - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}" + # - name: Perform CodeQL Analysis + # uses: github/codeql-action/analyze@v3 + # with: + # category: "/language:${{matrix.language}}" diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml index 954e6c8..d3d39ee 100644 --- a/.github/workflows/maven-publish.yml +++ b/.github/workflows/maven-publish.yml @@ -1,34 +1,34 @@ # This workflow will build a package using Maven and then publish it to GitHub packages when a release is created # For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path -name: Maven Package +# name: Maven Package -on: - release: - types: [created] +# on: + # release: + # types: [created] -jobs: - build: +# jobs: + # build: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write + # runs-on: ubuntu-latest + # permissions: + # contents: read + # packages: write - steps: - - uses: actions/checkout@v4 - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - server-id: github # Value of the distributionManagement/repository/id field of the pom.xml - settings-path: ${{ github.workspace }} # location for the settings.xml file + # steps: + # - uses: actions/checkout@v4 + # - name: Set up JDK 21 + # uses: actions/setup-java@v3 + # with: + # java-version: '21' + # distribution: 'temurin' + # server-id: github # Value of the distributionManagement/repository/id field of the pom.xml + # settings-path: ${{ github.workspace }} # location for the settings.xml file - - name: Build with Maven - run: mvn -B package --file pom.xml + # - name: Build with Maven + # run: mvn -B package --file pom.xml - - name: Publish to GitHub Packages Apache Maven - run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml - env: - GITHUB_TOKEN: ${{ github.token }} + # - name: Publish to GitHub Packages Apache Maven + # run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml + # env: + # GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 857c099..eddddc6 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -21,10 +21,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up JDK 20 + - name: Set up JDK 21 uses: actions/setup-java@v3 with: - java-version: '20' + java-version: '21' distribution: 'temurin' cache: maven - name: Build with Maven diff --git a/README.md b/README.md index 8e1abb0..a915fc4 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,17 @@ A Java common library ![GitHub closed issues](https://img.shields.io/github/issues-closed/shortthirdman-org/PrimeKit) ![GitHub Workflow Status (with event and branch)](https://img.shields.io/github/actions/workflow/status/shortthirdman-org/PrimeKit/release.yml?event=push&branch=main) -## Tech Stack -shortthirdman-org/PrimeKit is built on the following main stack: +## Tech Stack +> shortthirdman-org/PrimeKit is built on the following main stack: +- Java [Java](https://www.java.com) – Languages +- Spring Framework [Spring Framework](https://spring.io/projects/spring-framework) – Frameworks (Full Stack) +- PostgreSQL [PostgreSQL](http://www.postgresql.org/) – Databases +- Spring Data [Spring Data](https://spring.io/projects/spring-data) – Database Tools +- GitHub Actions [GitHub Actions](https://github.com/features/actions) – Continuous Integration +- JUnit [JUnit](http://junit.org/) – Testing Frameworks Full tech stack [here](/techstack.md) diff --git a/techstack.md b/techstack.md index a6b04c0..3664332 100644 --- a/techstack.md +++ b/techstack.md @@ -3,7 +3,12 @@ ## Tech Stack shortthirdman-org/PrimeKit is built on the following main stack: - +- [Java](https://www.java.com) – Languages +- [Spring Framework](https://spring.io/projects/spring-framework) – Frameworks (Full Stack) +- [PostgreSQL](http://www.postgresql.org/) – Databases +- [Spring Data](https://spring.io/projects/spring-data) – Database Tools +- [GitHub Actions](https://github.com/features/actions) – Continuous Integration +- [JUnit](http://junit.org/) – Testing Frameworks Full tech stack [here](/techstack.md) @@ -13,7 +18,12 @@ Full tech stack [here](/techstack.md) ## Tech Stack shortthirdman-org/PrimeKit is built on the following main stack: - +- Java [Java](https://www.java.com) – Languages +- Spring Framework [Spring Framework](https://spring.io/projects/spring-framework) – Frameworks (Full Stack) +- PostgreSQL [PostgreSQL](http://www.postgresql.org/) – Databases +- Spring Data [Spring Data](https://spring.io/projects/spring-data) – Database Tools +- GitHub Actions [GitHub Actions](https://github.com/features/actions) – Continuous Integration +- JUnit [JUnit](http://junit.org/) – Testing Frameworks Full tech stack [here](/techstack.md) @@ -24,13 +34,68 @@ Full tech stack [here](/techstack.md) # Tech Stack File ![](https://img.stackshare.io/repo.svg "repo") [shortthirdman-org/PrimeKit](https://github.com/shortthirdman-org/PrimeKit)![](https://img.stackshare.io/public_badge.svg "public")

-|1
Tools used|06/08/24
Report generated| +|31
Tools used|06/08/24
Report generated| |------|------| -## DevOps (1) +## Languages (1) + + + + +
+ Java +
+ Java +
+ +
+ +## Frameworks (1) + + + + +
+ Spring Framework +
+ Spring Framework +
+ v6.1.6 +
+ +## Data (2) + + + + +
+ PostgreSQL +
+ PostgreSQL +
+ +
+ Spring Data +
+ Spring Data +
+ +
+ +## DevOps (4) + + + + + + + +
+ Apache Maven +
+ Apache Maven +
+ +
Git
Git @@ -38,9 +103,56 @@ Full tech stack [here](/techstack.md)
+ GitHub Actions +
+ GitHub Actions +
+ +
+ JUnit +
+ JUnit +
+ +
+ +## Open source packages (23) + +## Apache Maven (23) + +|NAME|VERSION|LAST UPDATED|LAST UPDATED BY|LICENSE|VULNERABILITIES| +|:------|:------|:------|:------|:------|:------| +|[org.springframework.security:spring-security-core](http://spring.io/spring-security)|v6.1.6|06/08/24|Swetank Mohanty |Apache-2.0|[CVE-2024-22234](https://github.com/advisories/GHSA-w3w6-26f2-p474) (High)
[CVE-2024-22257](https://github.com/advisories/GHSA-f3jh-qvm4-mg39) (High)| +|[com.fasterxml.jackson.core:jackson-annotations](http://github.com/FasterXML/jackson)|v2.15.4|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[com.fasterxml.jackson.core:jackson-core](https://github.com/FasterXML/jackson-core)|v2.15.4|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[commons-codec:commons-codec](https://commons.apache.org/proper/commons-codec/)|v1.15|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[commons-io:commons-io](http://commons.apache.org/proper/commons-io/)|v2.11.0|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.apache.commons:commons-lang3](http://commons.apache.org/proper/commons-lang/)|v3.12.0|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.hibernate.common:hibernate-commons-annotations](http://hibernate.org)|N/A|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.hibernate:hibernate-core](http://hibernate.org/orm)|N/A|06/08/24|Swetank Mohanty |LGPL-2.0-only,GPL-3.0-or-later|N/A| +|[org.junit.jupiter:junit-jupiter-api](https://junit.org/junit5/)|v5.10.2|06/08/24|Swetank Mohanty |EPL-2.0|N/A| +|[org.junit.jupiter:junit-jupiter-engine](https://junit.org/junit5/)|v5.10.2|06/08/24|Swetank Mohanty |EPL-2.0|N/A| +|[org.junit.jupiter:junit-jupiter-params](https://junit.org/junit5/)|v5.10.2|06/08/24|Swetank Mohanty |EPL-2.0|N/A| +|[org.junit.platform:junit-platform-runner](https://junit.org/junit5/)|v1.10.2|06/08/24|Swetank Mohanty |EPL-2.0|N/A| +|[org.postgresql:postgresql](http://jdbc.postgresql.org)|v42.7.3|06/08/24|Swetank Mohanty |BSD-2-Clause|N/A| +|[org.projectlombok:lombok](https://projectlombok.org)|v1.18.30|06/08/24|Swetank Mohanty |MIT|N/A| +|[org.springframework.data:spring-data-commons](https://www.spring.io/spring-data)|v3.2.5|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.springframework.data:spring-data-jpa](https://projects.spring.io/spring-data-jpa)|v3.2.5|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.springframework:spring-aop](https://github.com/spring-projects/spring-framework)|v6.1.6|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.springframework:spring-beans](https://github.com/spring-projects/spring-framework)|v6.1.6|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.springframework:spring-context](https://github.com/spring-projects/spring-framework)|v6.1.6|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.springframework:spring-context-support](https://github.com/spring-projects/spring-framework)|v6.1.6|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.springframework:spring-core](https://github.com/spring-projects/spring-framework)|v6.1.6|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.springframework:spring-web](https://github.com/spring-projects/spring-framework)|v6.1.6|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +|[org.springframework:spring-webmvc](https://github.com/spring-projects/spring-framework)|v6.1.6|06/08/24|Swetank Mohanty |Apache-2.0|N/A| +
diff --git a/techstack.yml b/techstack.yml index 7273eab..38a7c39 100644 --- a/techstack.yml +++ b/techstack.yml @@ -1,13 +1,78 @@ repo_name: shortthirdman-org/PrimeKit -report_id: 61253ef6a057d694abc058ee5391acae +report_id: 1c35374bcba36735c57e49bcdc75aac6 version: 0.1 repo_type: Public -timestamp: '2024-06-08T17:23:29+00:00' +timestamp: '2024-06-08T18:21:41+00:00' requested_by: shortthirdman provider: github branch: main -detected_tools_count: 1 +detected_tools_count: 31 tools: +- name: Java + description: A concurrent, class-based, object-oriented, language specifically designed + to have as few implementation dependencies as possible + website_url: https://www.java.com + open_source: true + hosted_saas: false + category: Languages & Frameworks + sub_category: Languages + image_url: https://img.stackshare.io/service/995/K85ZWV2F.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit + detection_source: Repo Metadata +- name: Spring Framework + description: An application framework and inversion of control container for the + Java platform + website_url: https://spring.io/projects/spring-framework + version: 6.1.6 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Languages & Frameworks + sub_category: Frameworks (Full Stack) + image_url: https://img.stackshare.io/service/2006/spring-framework-project-logo.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: PostgreSQL + description: A powerful, open source object-relational database system + website_url: http://www.postgresql.org/ + open_source: true + hosted_saas: false + category: Data Stores + sub_category: Databases + image_url: https://img.stackshare.io/service/1028/ASOhU5xJ.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: Spring Data + description: Provides a consistent approach to data access – relational, non-relational, + map-reduce, and beyond + website_url: https://spring.io/projects/spring-data + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Data Stores + sub_category: Database Tools + image_url: https://img.stackshare.io/service/7624/IG6D4Ro2_400x400.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: Apache Maven + description: Apache build manager for Java projects. + website_url: http://maven.apache.org/ + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Build, Test, Deploy + sub_category: Java Build Tools + image_url: https://img.stackshare.io/package_manager/977/default_9833f2ef0bbc2a946b4cc5e9307264033361076b.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/.mvn/maven.config + detection_source: primekit-essentials/.mvn/maven.config + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z - name: Git description: Fast, scalable, distributed revision control system website_url: http://git-scm.com/ @@ -18,3 +83,339 @@ tools: image_url: https://img.stackshare.io/service/1046/git.png detection_source_url: https://github.com/shortthirdman-org/PrimeKit detection_source: Repo Metadata +- name: GitHub Actions + description: Automate your workflow from idea to production + website_url: https://github.com/features/actions + open_source: false + hosted_saas: true + category: Build, Test, Deploy + sub_category: Continuous Integration + image_url: https://img.stackshare.io/service/11563/actions.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/.github/workflows/codeql.yml + detection_source: ".github/workflows/codeql.yml" + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: JUnit + description: A programmer-oriented testing framework for Java + website_url: http://junit.org/ + license: EPL-1.0 + open_source: true + hosted_saas: false + category: Build, Test, Deploy + sub_category: Testing Frameworks + image_url: https://img.stackshare.io/service/2020/874086.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework.security:spring-security-core + description: Spring-security-core + version: 6.1.6 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z + vulnerabilities: + - name: Broken Access Control in Spring Security With Direct Use of isFullyAuthenticated + cve_id: CVE-2024-22234 + cve_url: https://github.com/advisories/GHSA-w3w6-26f2-p474 + detected_date: Feb 21 + severity: high + first_patched: 6.1.7 + - name: Erroneous authentication pass in Spring Security + cve_id: CVE-2024-22257 + cve_url: https://github.com/advisories/GHSA-f3jh-qvm4-mg39 + detected_date: Mar 19 + severity: high + first_patched: 6.1.8 +- name: com.fasterxml.jackson.core:jackson-annotations + description: Core annotations used for value types + version: 2.15.4 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: com.fasterxml.jackson.core:jackson-core + description: Core Jackson processing abstractions + version: 2.15.4 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: commons-codec:commons-codec + description: The Apache Commons Codec package contains simple encoder and decoders + for various formats such as Base64 and Hexadecimal + version: '1.15' + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: commons-io:commons-io + description: The Apache Commons IO library contains utility classes + version: 2.11.0 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.apache.commons:commons-lang3 + description: Apache Commons Lang + version: 3.12.0 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.hibernate.common:hibernate-commons-annotations + description: Common reflection code used in support of annotation processing + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.hibernate:hibernate-core + description: Hibernate's core ORM functionality + license: LGPL-2.0-only,GPL-3.0-or-later + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.junit.jupiter:junit-jupiter-api + description: Module "junit-jupiter-api" of JUnit 5 + version: 5.10.2 + license: EPL-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.junit.jupiter:junit-jupiter-engine + description: Module "junit-jupiter-engine" of JUnit 5 + version: 5.10.2 + license: EPL-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.junit.jupiter:junit-jupiter-params + description: Module "junit-jupiter-params" of JUnit 5 + version: 5.10.2 + license: EPL-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.junit.platform:junit-platform-runner + description: Module "junit-platform-runner" of JUnit 5 + version: 1.10.2 + license: EPL-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.postgresql:postgresql + description: The PostgreSQL Driver JDBC4 + version: 42.7.3 + license: BSD-2-Clause + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.projectlombok:lombok + description: 'Spice up your java: Automatic Resource Management' + version: 1.18.30 + license: MIT + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework.data:spring-data-commons + description: Global parent pom.xml to be used by Spring Data modules + version: 3.2.5 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework.data:spring-data-jpa + description: Spring Data module for JPA repositories + version: 3.2.5 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework:spring-aop + description: Spring AOP + version: 6.1.6 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework:spring-beans + description: Spring Beans + version: 6.1.6 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework:spring-context + description: Spring Context + version: 6.1.6 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework:spring-context-support + description: Spring Context Support + version: 6.1.6 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework:spring-core + description: Spring Core + version: 6.1.6 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework:spring-web + description: Spring Web + version: 6.1.6 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z +- name: org.springframework:spring-webmvc + description: Spring Web MVC + version: 6.1.6 + license: Apache-2.0 + open_source: true + hosted_saas: false + category: Libraries + sub_category: Maven Packages + image_url: https://img.stackshare.io/package/maven/image.png + detection_source_url: https://github.com/shortthirdman-org/PrimeKit/blob/main/primekit-essentials/pom.xml + detection_source: primekit-essentials/pom.xml + last_updated_by: Swetank Mohanty + last_updated_on: 2024-06-08 18:03:01.000000000 Z