Skip to content

Commit

Permalink
Update to Java 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kiritofeng committed Dec 22, 2023
1 parent 73ea62c commit abbc93e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.7
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.7
java-version: 1.8
- name: Build with Maven
run: mvn package --file pom.xml
- name: Upload Artifacts
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand All @@ -39,4 +39,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit abbc93e

Please sign in to comment.