Remove log4j 1.2.17 JAR from libs and switch to SLF4J backed by Log4j2 #6
This file contains hidden or 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
| name: Build & Test Java Project | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| paths: | |
| - "src/**" | |
| - "build.gradle.kts" | |
| - "gradle/**" | |
| - ".github/workflows/build.yml" | |
| pull_request: | |
| branches: [ "master" ] | |
| paths: | |
| - "src/**" | |
| - "build.gradle.kts" | |
| - "gradle/**" | |
| - ".github/workflows/build.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '25' | |
| distribution: 'temurin' | |
| cache: 'gradle' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Build and Test with Gradle | |
| run: ./gradlew build -x spotlessCheck |