mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-11-21 15:54:47 +00:00
update configs with java setup
This commit is contained in:
15
.gitpod.yml
15
.gitpod.yml
@@ -1,4 +1,19 @@
|
|||||||
image:
|
image:
|
||||||
file: .gitpod.Dockerfile
|
file: .gitpod.Dockerfile
|
||||||
|
|
||||||
|
ports:
|
||||||
|
- port: 25565
|
||||||
|
onOpen: notify
|
||||||
|
|
||||||
|
vscode:
|
||||||
|
extensions:
|
||||||
|
- eamodio.gitlens
|
||||||
|
- github.vscode-pull-request-github
|
||||||
|
- redhat.java
|
||||||
|
- richardwillis.vscode-gradle
|
||||||
|
- vscjava.vscode-java-debug
|
||||||
|
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- init: ./gradlew
|
- init: ./gradlew
|
||||||
|
command: ./gradlew genSources
|
||||||
|
|||||||
26
.vscode/settings.json
vendored
26
.vscode/settings.json
vendored
@@ -1,3 +1,27 @@
|
|||||||
{
|
{
|
||||||
"java.configuration.updateBuildConfiguration": "automatic"
|
"files.exclude": {
|
||||||
|
// Default Java Dev
|
||||||
|
"**/.classpath": true,
|
||||||
|
"**/.project": true,
|
||||||
|
"**/.settings": true,
|
||||||
|
"**/.factorypath": true,
|
||||||
|
|
||||||
|
// Custom Hidden Files
|
||||||
|
"**/.bin": true,
|
||||||
|
"**/.editorconfig": true,
|
||||||
|
},
|
||||||
|
|
||||||
|
"java.configuration.updateBuildConfiguration": "automatic",
|
||||||
|
"java.home": "/home/gitpod/.sdkman/candidates/java/11.0.10.fx-zulu",
|
||||||
|
"java.configuration.runtimes": [
|
||||||
|
{
|
||||||
|
"name": "JavaSE-1.8",
|
||||||
|
"path": "/home/gitpod/.sdkman/candidates/java/current",
|
||||||
|
"default": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "JavaSE-11",
|
||||||
|
"path": "/home/gitpod/.sdkman/candidates/java/11.0.10.fx-zulu",
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user