Skip to content

Commit 86e54ac

Browse files
committed
Updated to JDK 14.
1 parent 89cf863 commit 86e54ac

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.circleci/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
# specify the version you desire here
4141
# https://circleci.com/docs/2.0/docker-image-tags.json
4242
# circleci/openjdk:11-jdk-node-browsers
43-
- image: adoptopenjdk/openjdk13
43+
# https://circleci.com/docs/2.0/circleci-images/#openjdk
44+
- image: adoptopenjdk/openjdk14
4445
environment:
4546
CC_TEST_REPORTER_ID: $CC_TEST_REPORTER_ID
4647
COVERALLS_REPO_TOKEN: $COVERALLS_REPO_TOKEN

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v1
99
- uses: actions/setup-java@v1
1010
with:
11-
java-version: "13.0.0"
11+
java-version: "14.0.0"
1212
architecture: x64
1313
- run: java -version
1414
- name: Make javacode

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
include:
99
- stage: build-test
1010
language: java
11-
jdk: openjdk13
11+
jdk: openjdk14
1212
before_install:
1313
- chmod +x gradlew
1414
script:

.vscode/launch.json

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
{
8+
"type": "java",
9+
"name": "CodeLens (Launch) - Solution",
10+
"request": "launch",
11+
"mainClass": "EducativeIo.Courses.GrokkingTheCodingInterview.Ch02_Pattern_SlidingWindow.P1_MaximumSumSubarrayOfSizeK.Java.Solution",
12+
"projectName": "learning-computer-science"
13+
},
714
{
815
"type": "java",
916
"name": "CodeLens (Launch) - Solution",

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ image:
1010
- Visual Studio 2019
1111
- Ubuntu
1212

13-
stack: node 12, jdk 13, python 3.8.0 x64
13+
stack: node 13, jdk 14, python 3.8.0 x64
1414

1515
install:
1616
- cmd: "SET JAVA_HOME=C:\\Program Files\\Java\\jdk13"

0 commit comments

Comments
 (0)