Browse Source

Releases now built to work with Java 9 and above.

(up until this point, we assumed Java 8)
accumulation-v4.7
Dave Parker 5 years ago
parent
commit
f0d68e1649
  1. 3
      .travis.yml
  2. 2
      prism/Makefile

3
.travis.yml

@ -6,9 +6,8 @@ dist: xenial
sudo: required
language: java
# we test for JDK 8,10,11
# we test for JDK 10,11
jdk:
- openjdk8
- openjdk10
- openjdk11

2
prism/Makefile

@ -552,7 +552,7 @@ BIN_DIST_INST = $(BIN_DIST_DIR)-installer.exe
# Build a (binary) distribution in the release directory
release: JFLAGS += -source 1.8 -target 1.8
release: JFLAGS += --release 9
release: clean_all all binary release_check_version build_release clean_binary
release_check_version:

Loading…
Cancel
Save