/** * **mvn** - Java-based project management * * @domain `maven.apache.org` * @programs `mvn`, `mvnDebug`, `mvnyjp` * @version `3.9.11` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install maven.apache.org` * @homepage https://maven.apache.org/ * @dependencies `openjdk.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mavenapacheorg * console.log(pkg.name) // "mvn" * console.log(pkg.description) // "Java-based project management" * console.log(pkg.programs) // ["mvn", "mvnDebug", ...] * console.log(pkg.versions[0]) // "3.9.11" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/maven-apache-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mavenapacheorgPackage: { /** * The display name of this package. */ name: 'mvn'; /** * The canonical domain name for this package. */ domain: 'maven.apache.org'; /** * Brief description of what this package does. */ description: 'Java-based project management'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/maven.apache.org/package.yml'; homepageUrl: 'https://maven.apache.org/'; githubUrl: 'https://github.com/apache/maven'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install maven.apache.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +maven.apache.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install maven.apache.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mvn', 'mvnDebug', 'mvnyjp']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openjdk.org']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.9.11', '3.9.10', '3.9.9', '3.9.8', '3.9.7', '3.9.6', '3.9.5', '3.9.4', '3.9.3', '3.8.9', '3.8.7', '3.6.3']; aliases: readonly [] }; export type MavenapacheorgPackage = typeof mavenapacheorgPackage