/** * **gradle** - Open-source build automation tool based on the Groovy and Kotlin DSL * * @domain `gradle.org` * @programs `gradle` * @version `9.2.1` (24 versions available) * @versions From newest version to oldest. * * @install `launchpad install gradle.org` * @homepage https://www.gradle.org/ * @dependencies `openjdk.org` * @buildDependencies `openjdk.org@17` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gradleorg * console.log(pkg.name) // "gradle" * console.log(pkg.description) // "Open-source build automation tool based on the ..." * console.log(pkg.programs) // ["gradle"] * console.log(pkg.versions[0]) // "9.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gradle-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gradleorgPackage: { /** * The display name of this package. */ name: 'gradle'; /** * The canonical domain name for this package. */ domain: 'gradle.org'; /** * Brief description of what this package does. */ description: 'Open-source build automation tool based on the Groovy and Kotlin DSL'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gradle.org/package.yml'; homepageUrl: 'https://www.gradle.org/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gradle.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gradle.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gradle.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gradle']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openjdk.org']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['openjdk.org@17']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['9.2.1', '9.2.0', '9.1.0', '9.0.0', '8.14.3', '8.14.2', '8.14.1', '8.14.0', '8.13.0', '8.12.1', '8.12.0', '8.11.1', '8.11.0', '8.10.2', '8.10.1', '8.10.0', '8.9.0', '8.8.0', '8.7.0', '8.6.0', '8.5.0', '8.2.1', '7.6.6', '7.6.5']; aliases: readonly [] }; export type GradleorgPackage = typeof gradleorgPackage