/**
 * **mvn** - Java-based project management
 *
 * @domain `maven.apache.org`
 * @programs `mvn`, `mvnDebug`, `mvnyjp`
 * @version `3.9.10` (10 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +maven.apache.org -- $SHELL -i`
 * @aliases `mvn`
 * @dependencies `openjdk.org`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.mvn
 * // Or access via domain
 * const samePkg = pantry.mavenapacheorg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "maven.apache.org"
 * console.log(pkg.description) // "Java-based project management"
 * console.log(pkg.programs)    // ["mvn", "mvnDebug", ...]
 * console.log(pkg.versions[0]) // "3.9.10" (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: 'maven.apache.org';
  /**
   * 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 +maven.apache.org -- $SHELL -i';
  /**
   * 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.10', '3.9.9', '3.9.8', '3.9.7', '3.9.6', '3.9.5', '3.9.4', '3.9.3', '3.8.7', '3.6.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['mvn']
};
export type MvnPackage = typeof mvnPackage