Don't do CI builds for obsolete JDKs (#1185)

This is motivated by an accute problem with OpenJDK 10, which
is consistently failing in CI for reasons wholy unrelated to
Okio.

    > Configure project :android-test
    Unable to detect AGP versions for included builds. All projects in the build should use the same AGP version. Class name for the included build object: org.gradle.composite.internal.DefaultIncludedBuild$IncludedBuildImpl_Decorated.
    e: /home/runner/work/okio/okio/android-test/build.gradle.kts:18:1: Unresolved reference: android

It's likely Gradle or AGP or something doesn't work on Java 10,
even though it does work on Java 8, Java 9, Java 11, and Java 12.

I'm not interested in debugging this problem; the right fix for
it is 'Upgrade to a newer JDK'.

I've specifically dropped unmaintained JDKs according to this page:
https://en.wikipedia.org/wiki/Java_version_history
1 file changed
tree: c92f389ee3c110352f62551469782794c778f83c
  1. .buildscript/
  2. .github/
  3. android-test/
  4. build-support/
  5. docs/
  6. gradle/
  7. kotlin-js-store/
  8. okio/
  9. okio-bom/
  10. okio-fakefilesystem/
  11. okio-nodefilesystem/
  12. okio-testing-support/
  13. samples/
  14. .editorconfig
  15. .gitattributes
  16. .gitignore
  17. BUG-BOUNTY.md
  18. build.gradle.kts
  19. CHANGELOG.md
  20. CONTRIBUTING.md
  21. gradle.properties
  22. gradlew
  23. gradlew.bat
  24. LICENSE.txt
  25. mkdocs.yml
  26. README.md
  27. renovate.json
  28. settings.gradle.kts
README.md

Okio

See the project website for documentation and APIs.

Okio is a library that complements java.io and java.nio to make it much easier to access, store, and process your data. It started as a component of OkHttp, the capable HTTP client included in Android. It's well-exercised and ready to solve new problems.

License

Copyright 2013 Square, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.