Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
java
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eazydevelop-devcontainer-temp
java
Commits
659ce9e2
Commit
659ce9e2
authored
Aug 21, 2025
by
xiezhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
multi version support
parent
9c03e836
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
108 additions
and
4 deletions
+108
-4
devcontainer-java-11.json
.devcontainer/devcontainer-java-11.json
+35
-0
devcontainer-java-17.json
.devcontainer/devcontainer-java-17.json
+2
-4
devcontainer-java-21.json
.devcontainer/devcontainer-java-21.json
+35
-0
devcontainer-java-8.json
.devcontainer/devcontainer-java-8.json
+35
-0
fio_test_result.json
fio_test_result.json
+1
-0
No files found.
.devcontainer/devcontainer-java-11.json
0 → 100644
View file @
659ce9e2
{
"name"
:
"Java 11 Development Environment"
,
"image"
:
"hb.eazytec-cloud.com/eazytec/eazydevelop-base:ubuntu"
,
"features"
:
{
"./java"
:
{
"version"
:
"11"
,
"installMaven"
:
true
},
"ghcr.io/devcontainers/features/common-utils:2"
:
{
"installZsh"
:
true
,
"configureZshAsDefaultShell"
:
true
,
"installOhMyZsh"
:
true
,
"upgradePackages"
:
true
}
},
"customizations"
:
{
"vscode"
:
{
"extensions"
:
[
"vscjava.vscode-java-pack"
,
"vscjava.vscode-maven"
,
"vscjava.vscode-gradle"
,
"redhat.java"
,
"vscjava.vscode-java-debug"
,
"vscjava.vscode-java-test"
],
"settings"
:
{
"java.home"
:
"/usr/local/openjdk-11"
,
"java.configuration.updateBuildConfiguration"
:
"automatic"
,
"java.compile.nullAnalysis.mode"
:
"automatic"
}
}
},
"postCreateCommand"
:
"java -version && mvn -version && gradle -version"
,
"remoteUser"
:
"vscode"
}
.devcontainer/devcontainer.json
→
.devcontainer/devcontainer
-java-17
.json
View file @
659ce9e2
{
{
"name"
:
"Java Development Environment"
,
"name"
:
"Java
17
Development Environment"
,
"image"
:
"hb.eazytec-cloud.com/eazytec/eazydevelop-base:ubuntu"
,
"image"
:
"hb.eazytec-cloud.com/eazytec/eazydevelop-base:ubuntu"
,
"features"
:
{
"features"
:
{
"./java"
:
{
"./java"
:
{
"version"
:
"17"
,
"version"
:
"17"
,
"installMaven"
:
true
,
"installMaven"
:
true
"useChineseMirror"
:
false
,
"mirrorSource"
:
"aliyun"
},
},
"ghcr.io/devcontainers/features/common-utils:2"
:
{
"ghcr.io/devcontainers/features/common-utils:2"
:
{
"installZsh"
:
true
,
"installZsh"
:
true
,
...
...
.devcontainer/devcontainer-java-21.json
0 → 100644
View file @
659ce9e2
{
"name"
:
"Java 21 Development Environment"
,
"image"
:
"hb.eazytec-cloud.com/eazytec/eazydevelop-base:ubuntu"
,
"features"
:
{
"./java"
:
{
"version"
:
"21"
,
"installMaven"
:
true
},
"ghcr.io/devcontainers/features/common-utils:2"
:
{
"installZsh"
:
true
,
"configureZshAsDefaultShell"
:
true
,
"installOhMyZsh"
:
true
,
"upgradePackages"
:
true
}
},
"customizations"
:
{
"vscode"
:
{
"extensions"
:
[
"vscjava.vscode-java-pack"
,
"vscjava.vscode-maven"
,
"vscjava.vscode-gradle"
,
"redhat.java"
,
"vscjava.vscode-java-debug"
,
"vscjava.vscode-java-test"
],
"settings"
:
{
"java.home"
:
"/usr/local/openjdk-21"
,
"java.configuration.updateBuildConfiguration"
:
"automatic"
,
"java.compile.nullAnalysis.mode"
:
"automatic"
}
}
},
"postCreateCommand"
:
"java -version && mvn -version && gradle -version"
,
"remoteUser"
:
"vscode"
}
.devcontainer/devcontainer-java-8.json
0 → 100644
View file @
659ce9e2
{
"name"
:
"Java 8 Development Environment"
,
"image"
:
"hb.eazytec-cloud.com/eazytec/eazydevelop-base:ubuntu"
,
"features"
:
{
"./java"
:
{
"version"
:
"8"
,
"installMaven"
:
true
},
"ghcr.io/devcontainers/features/common-utils:2"
:
{
"installZsh"
:
true
,
"configureZshAsDefaultShell"
:
true
,
"installOhMyZsh"
:
true
,
"upgradePackages"
:
true
}
},
"customizations"
:
{
"vscode"
:
{
"extensions"
:
[
"vscjava.vscode-java-pack"
,
"vscjava.vscode-maven"
,
"vscjava.vscode-gradle"
,
"redhat.java"
,
"vscjava.vscode-java-debug"
,
"vscjava.vscode-java-test"
],
"settings"
:
{
"java.home"
:
"/usr/local/openjdk-8"
,
"java.configuration.updateBuildConfiguration"
:
"automatic"
,
"java.compile.nullAnalysis.mode"
:
"automatic"
}
}
},
"postCreateCommand"
:
"java -version && mvn -version && gradle -version"
,
"remoteUser"
:
"vscode"
}
fio_test_result.json
0 → 100644
View file @
659ce9e2
fio
:
file
:
ioengines.c
:
135
,
func=dlopen
,
error=dlopen(libaio
,
0
x
0001
)
:
tried
:
'libaio'
(no
such
file)
,
'/System/Volumes/Preboot/Crypt
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment