maven

maven 3.9.16

Build automation tool (used primarily for Java projects)

<rendered-html><p>Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project’s build, reporting and documentation from a central piece of information.</p> </rendered-html>

https://maven.apache.org/
Apache License 2.0
main program: mvnprograms: mvn, mvnDebug
Platforms (8)
armv6l-linuxriscv64-linuxi686-linuxx86_64-linuxaarch64-darwinaarch64-linuxarmv7l-linuxpowerpc64le-linux
View source on NixOS/nixpkgs →

Install

Copy into your configuration

NixOS (configuration.nix)
environment.systemPackages = with pkgs; [
  maven
];
Ad-hoc shell
nix-shell -p maven
Flake (nix run)
nix run nixpkgs#maven