1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-27 21:26:19 +02:00

Compare commits

..

4 Commits

Author SHA1 Message Date
Joel Benway 3a44facec6
Merge 173d09515b into 4ced0d9048 2024-04-15 20:07:09 +01:00
Luc Perkins 4ced0d9048
Merge pull request #42 from sstubbs/feature/add-jdtls
feature: add jdtls
2024-04-15 15:51:19 -03:00
Stephen Stubbs 9790fbe6da chore: add jdtls to readme 2024-04-15 19:37:27 +01:00
Stephen Stubbs c24a6dc989 feature: add jdtls 2024-04-14 12:58:49 +01:00
2 changed files with 3 additions and 1 deletions

View File

@ -160,6 +160,7 @@ A dev template that's fully customizable.
- [Java] 20.0.1+9
- [Maven] 3.9.2
- [Gradle] 9.0.1
- [jdtls] 1.31.0
### [`kotlin`](./kotlin/)
@ -334,6 +335,7 @@ All of the templates have only the root [flake](./flake.nix) as a flake input. T
[haxe]: https://haxe.org/
[iex]: https://hexdocs.pm/iex/IEx.html
[java]: https://java.com
[jdtls]: https://projects.eclipse.org/projects/eclipse.jdt.ls
[jq]: https://jqlang.github.io/jq
[kotlin]: https://kotlinlang.org
[latex]: https://www.latex-project.org/

View File

@ -21,7 +21,7 @@
{
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [ gradle jdk maven ];
packages = with pkgs; [ gradle jdk maven jdt-language-server ];
};
});
};