Skip to content

Commit

Permalink
Merge pull request #334 from rayokota/java-11
Browse files Browse the repository at this point in the history
Upgrade to Java 11
  • Loading branch information
rayokota committed Apr 16, 2023
2 parents 36d19eb + 0be9fd1 commit ab73b56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 1.8
java-version: '11'
distribution: 'adopt'
- name: Build with Maven
run: mvn -B package --file pom.xml
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<apache.directory.api.version>1.0.0-M33</apache.directory.api.version>
<apache.directory.server.version>2.0.0-M22</apache.directory.server.version>
<bouncycastle.version>1.70</bouncycastle.version>
Expand Down

0 comments on commit ab73b56

Please sign in to comment.