aufgabe 3

This commit is contained in:
2025-11-12 22:31:09 +01:00
commit 179f16d993
7 changed files with 195 additions and 0 deletions

13
praktikum-5/shell.nix Normal file
View File

@@ -0,0 +1,13 @@
with import <nixpkgs> {};
mkShell {
packages = [
openjdk
ant
astyle
jdt-language-server
];
shellHook = ''
echo "Usage Example: ant run -Dmain-class=aufgabe3.Server"
'';
}