File tree Expand file tree Collapse file tree 2 files changed +41
-1
lines changed Expand file tree Collapse file tree 2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change
1
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2
+ // README at: https://github.com/devcontainers/templates/tree/main/src/java-8
3
+ {
4
+ "name" : " Java 8" ,
5
+ "image" : " mcr.microsoft.com/devcontainers/java:1-8-buster" ,
6
+ "features" : {
7
+ "ghcr.io/devcontainers/features/java:1" : {
8
+ "version" : " none" ,
9
+ "installMaven" : " true" ,
10
+ "installGradle" : " false"
11
+ }
12
+ },
13
+
14
+ // Configure tool-specific properties.
15
+ "customizations" : {
16
+ // Configure properties specific to VS Code.
17
+ "vscode" : {
18
+ // Set *default* container specific settings.json values on container create.
19
+ "settings" : {
20
+ "java.import.gradle.java.home" : " /usr/local/sdkman/candidates/java/current" ,
21
+ "java.configuration.runtimes" : [
22
+ {
23
+ "default" : true ,
24
+ "name" : " JavaSE-1.8" ,
25
+ "path" : " /usr/local/sdkman/candidates/java/current"
26
+ }
27
+ ]
28
+ }
29
+ }
30
+ }
31
+
32
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
33
+ // "forwardPorts": [],
34
+
35
+ // Use 'postCreateCommand' to run commands after the container is created.
36
+ // "postCreateCommand": "java -version",
37
+
38
+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
39
+ // "remoteUser": "root"
40
+ }
Original file line number Diff line number Diff line change 14
14
AWS_REGION : us-east-1
15
15
strategy :
16
16
matrix :
17
- python : [3.6 , 3.7 , 3.8 ]
17
+ python : [3.7 , 3.8 , 3.9 ]
18
18
java : [8, 11]
19
19
runs-on : ubuntu-latest
20
20
steps :
You can’t perform that action at this time.
0 commit comments