Skip to content

Commit

Permalink
Upgrade Java (#194)
Browse files Browse the repository at this point in the history
Use Java 17.

Co-authored-by: Manu Sridharan <[email protected]>
  • Loading branch information
khatchad and msridhar authored May 28, 2024
1 parent 60955d6 commit b813bde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- name: Check out wala/ML sources
uses: actions/checkout@v3
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Install Python.
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
os: linux
dist: jammy
language: java
jdk: openjdk11
jdk: openjdk17
before_install:
- pip install -r requirements.txt
- mvn spotless:check -B
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
</distributionManagement>
<properties>
<project-version>0.0.1-SNAPSHOT</project-version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.version>3.10.1</maven.compiler.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<build-alias>b000</build-alias>
Expand Down

0 comments on commit b813bde

Please sign in to comment.