Skip to content

Commit

Permalink
Wonky running in Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
domix committed Jan 15, 2019
1 parent 18c5368 commit ad83af9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ cache:
language: java
jdk:
- oraclejdk8
- oraclejdk11
env:
matrix:
- TERM=dumb WONKY_TENANTS_FILE=./orgs_ignored.yaml
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ tasks.withType(JavaCompile){

task createDockerfile(type: com.bmuschko.gradle.docker.tasks.image.Dockerfile) {
destFile = project.file('build/libs/Dockerfile')
from 'openjdk:8u181-jre-slim-stretch'
from 'openjdk:11.0.1-jre-stretch'
def ci = System.getenv('CI') == "true"
def extra = ''
if(ci) {
Expand Down
2 changes: 1 addition & 1 deletion runDocker
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env sh

docker run --rm -p 8080:8080 -v `pwd`/orgs_ignored.yaml:/etc/wonky/tenants.yaml domix/wonky:0.3.1
docker run --rm -p 8080:8080 -v `pwd`/orgs_ignored.yaml:/etc/wonky/tenants.yaml domix/wonky:0.3.2-snapshot

0 comments on commit ad83af9

Please sign in to comment.