Skip to content

Commit

Permalink
revert: recover Java 8 compatibility
Browse files Browse the repository at this point in the history
closes #70
  • Loading branch information
dialex committed May 30, 2022
1 parent 5f95d91 commit 3beda18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/update-javadoc.sh
@@ -1,6 +1,8 @@
#!/usr/bin/env bash

jenv shell 18
mvn javadoc:javadoc
jenv shell 1.8
rm -r docs
cp -R target/site/apidocs docs
open docs/index.html
2 changes: 1 addition & 1 deletion .java-version
@@ -1 +1 @@
18
1.8
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -15,7 +15,7 @@
<!-- code needs to be compatible with this version of Java -->
<maven.compiler.source>1.8</maven.compiler.source>
<!-- code is executed using this version of Java -->
<maven.compiler.target>18</maven.compiler.target>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<licenses>
Expand Down

0 comments on commit 3beda18

Please sign in to comment.