Skip to content

Commit

Permalink
Build project with JDK 8
Browse files Browse the repository at this point in the history
  • Loading branch information
yahavi committed Nov 9, 2023
1 parent c77e174 commit 66947d8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "11"
java-version: "8"

# Run static code analysis
- name: Run spotbugs:check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frogbot-scan-and-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: "11"
java-version: "8"
distribution: "adopt"

- uses: jfrog/frogbot@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frogbot-scan-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: "11"
java-version: "8"
distribution: "temurin"

- uses: jfrog/frogbot@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "11"
java-version: "8"

# Install the plugin to allow running the integration tests
- name: Install plugin
Expand Down
2 changes: 1 addition & 1 deletion .jfrog-pipelines/release/pipelines.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pipelines:
auto:
language: java
versions:
- "11"
- "8"
environmentVariables:
readOnly:
NEXT_VERSION: 0.0.0
Expand Down
2 changes: 1 addition & 1 deletion .jfrog-pipelines/release/pipelines.snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pipelines:
auto:
language: java
versions:
- "11"
- "8"
steps:
- name: Snapshot
type: Bash
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<properties>
<maven.min.version>3.6.3</maven.min.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<jackson.version>2.15.2</jackson.version>
<skipITs>true</skipITs>
</properties>
Expand Down

0 comments on commit 66947d8

Please sign in to comment.