BYU-Bazel / bazel-ls

A Bazel language server prototype
Apache License 2.0
10 stars 0 forks source link

Fix code lense to work on java 1.8 #142

Closed jasonxris closed 3 years ago

jasonxris commented 3 years ago

Changed a Path.of to Paths.get so that the code works with java 1.8 I'm not sure how this passed the Checks. I wasn't able to build and run the project without fixing this line.

josiahsrc commented 3 years ago

We need to update the github workflows to compile java 8 instead of 11

.github/workflows folder:

    os: [ubuntu-18.04]

steps:
  - uses: actions/checkout@v2
  - name: Set up JDK 11
    uses: actions/setup-java@v1
    with:
      java-version: 11
  - name: Compile and run the server test cases
    run: |
      ./scripts/test.sh -n server