mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
f61ecb65e7
In order to truely stay Java 8 compatible, declaring a source and target compatiblity is not sufficient. Source compatiblity means that the input, i.e. the code written in Java is compatible with that particular version of the Java Language Specification (JLS). And target compatibitliy means that the produced Java bytecode is compatible with that particular version of the Java Virtual Machine Specificiation (JVMS). But there is actually a third dimension: the runtime library (rt.jar). If signatures of methods change over java releases within the runtime library, then the produced bytecode, may contain calls to methods that do not exist with that exact same signature in older java versions. For example the family of Buffer subclasses changed the return value of certain functions, for example flip() to not return Buffer, but the concrete type of the current instance, e.g. CharBuffer. If we compile now with a newer JDK, where the return type is CharBuffer and not Buffer, then executing on an older JDK, where the return type is Buffer, then we get java.lang.NoSuchMethodError(s) thrown at us. Fixes SMACK-651.
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
language: android
|
|
dist: trusty
|
|
android:
|
|
components:
|
|
- android-19
|
|
jdk:
|
|
- openjdk8
|
|
- openjdk11
|
|
|
|
before_cache:
|
|
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
|
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
|
|
cache:
|
|
directories:
|
|
- $HOME/.gradle/caches/
|
|
- $HOME/.android/build-cache
|
|
- $HOME/.m2
|
|
|
|
before_install:
|
|
- export GRADLE_VERSION=6.2
|
|
- wget https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-all.zip
|
|
- unzip -q gradle-${GRADLE_VERSION}-all.zip
|
|
- export PATH="$(pwd)/gradle-${GRADLE_VERSION}/bin:$PATH"
|
|
|
|
addons:
|
|
apt:
|
|
update: true
|
|
packages:
|
|
- graphviz
|
|
|
|
install: gradle assemble --stacktrace
|
|
|
|
# Run the test suite and also install the artifacts in the local maven
|
|
# archive to additionaly test if artifact creation is
|
|
# functional. Which hasn't always be the case in the past, see
|
|
# 90cbcaebc7a89f4f771f733a33ac9f389df85be2
|
|
# Also run javadocAll to ensure it works.
|
|
script: gradle check publishToMavenLocal javadocAll --stacktrace
|
|
|
|
after_success:
|
|
- JAVAC_VERSION=$((javac -version) 2>&1)
|
|
# Only run jacocoRootReport in the Java 8 build
|
|
- if [[ "$JAVAC_VERSION" = javac\ 1.8.* ]]; then gradle jacocoRootReport coveralls; fi
|