UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.4 kB
/** * **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 mvn` * @name `mvn` * @dependencies `openjdk.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.mvn * // Or access via domain * const samePkg = pantry.mavenapacheorg * console.log(pkg === samePkg) // true * 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 mvnPackage: { /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mvn'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mvn', 'mvnDebug', 'mvnyjp']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openjdk.org']; /** * 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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +maven.apache.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mvn' }; export type MvnPackage = typeof mvnPackage