-
Notifications
You must be signed in to change notification settings - Fork 367
[java,java-postgres]- Add support for debian trixie(13) #364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "id": "java-postgres", | ||
| "version": "4.0.2", | ||
| "version": "5.0.0", | ||
| "name": "Java & PostgreSQL", | ||
| "description": "Develop applications with Java and PostgreSQL. Includes a Java application container and PostgreSQL server.", | ||
| "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/java-postgres", | ||
|
|
@@ -11,16 +11,15 @@ | |
| "type": "string", | ||
| "description": "Java version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon):", | ||
| "proposals": [ | ||
| "21-trixie", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is missing 25-trixie |
||
| "17-trixie", | ||
| "11-trixie", | ||
| "21-bookworm", | ||
| "17-bookworm", | ||
| "11-bookworm", | ||
| "8-bookworm", | ||
| "21-bullseye", | ||
| "17-bullseye", | ||
| "11-bullseye", | ||
| "8-bullseye" | ||
| "8-bookworm" | ||
| ], | ||
| "default": "21-bullseye" | ||
| "default": "21-trixie" | ||
| }, | ||
| "installMaven": { | ||
| "type": "boolean", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ Develop Java applications. Includes the JDK and Java extensions. | |
|
|
||
| | Options Id | Description | Type | Default Value | | ||
| |-----|-----|-----|-----| | ||
| | imageVariant | Java version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon): | string | 21-bullseye | | ||
| | imageVariant | Java version (use -trixie, or -bookworm variants on local arm64/Apple Silicon): | string | 21-trixie | | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Recommend 25-trixie (latest LTS) |
||
| | installMaven | Install Maven, a management tool for Java | boolean | false | | ||
| | installGradle | Install Gradle, a build automation tool for multi-language software development | boolean | false | | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "id": "java", | ||
| "version": "4.0.2", | ||
| "version": "5.0.0", | ||
| "name": "Java", | ||
| "description": "Develop Java applications. Includes the JDK and Java extensions.", | ||
| "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/java", | ||
|
|
@@ -9,18 +9,17 @@ | |
| "options": { | ||
| "imageVariant": { | ||
| "type": "string", | ||
| "description": "Java version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon):", | ||
| "description": "Java version (use -trixie, or -bookworm, variants on local arm64/Apple Silicon):", | ||
| "proposals": [ | ||
| "21-trixie", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing 25-trixie |
||
| "17-trixie", | ||
| "11-trixie", | ||
| "21-bookworm", | ||
| "17-bookworm", | ||
| "11-bookworm", | ||
| "8-bookworm", | ||
| "21-bullseye", | ||
| "17-bullseye", | ||
| "11-bullseye", | ||
| "8-bullseye" | ||
| "8-bookworm" | ||
| ], | ||
| "default": "21-bullseye" | ||
| "default": "21-trixie" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Default should move to latest LTS, 25-trixie |
||
| }, | ||
| "installMaven": { | ||
| "type": "boolean", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Latest Java LTS is 25. I suggest documenting with the latest GA and LTS version.