Skip to content

Commit b962a19

Browse files
committed
Switch to Open JDK 8
1 parent 0816aa3 commit b962a19

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: java
22

33
jdk:
44
- openjdk11
5-
- oraclejdk8
5+
- openjdk8
66

77
after_success:
88
- chmod -R 777 ./travis/after_success.sh

travis/after_success.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
#
3-
# Copyright 2016-2018 the original author or authors.
3+
# Copyright 2016-2019 the original author or authors.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@ echo "Current commit detected: ${commit_message}"
3232
# a. Use -q option to only display Maven errors and warnings.
3333
# b. Use --settings to force the usage of our "settings.xml" file.
3434

35-
if [ $TRAVIS_JDK_VERSION == "oraclejdk8" ] && [ $TRAVIS_REPO_SLUG == "mybatis/mybatis-dynamic-sql" ]; then
35+
if [ $TRAVIS_JDK_VERSION == "openjdk8" ] && [ $TRAVIS_REPO_SLUG == "mybatis/mybatis-dynamic-sql" ]; then
3636

3737
./mvnw clean test jacoco:report coveralls:report -q
3838
echo -e "Successfully ran coveralls under Travis job ${TRAVIS_JOB_NUMBER}"

0 commit comments

Comments
 (0)