/** * **sonar-scanner** - Scanner CLI for SonarQube (Server, Cloud) * * @domain `sonarqube.org/sonarscanner` * @programs `sonar-scanner`, `sonar-scanner-debug` * @version `8.0.1.6346` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install sonarqube.org/sonarscanner` * @homepage http://redirect.sonarsource.com/doc/install-configure-scanner.html * @dependencies `openjdk.org^21` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.sonarqubeorgsonarscanner * console.log(pkg.name) // "sonar-scanner" * console.log(pkg.description) // "Scanner CLI for SonarQube (Server, Cloud)" * console.log(pkg.programs) // ["sonar-scanner", "sonar-scanner-debug"] * console.log(pkg.versions[0]) // "8.0.1.6346" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sonarqube-org/sonarscanner.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sonarqubeorgsonarscannerPackage: { /** * The display name of this package. */ name: 'sonar-scanner'; /** * The canonical domain name for this package. */ domain: 'sonarqube.org/sonarscanner'; /** * Brief description of what this package does. */ description: 'Scanner CLI for SonarQube (Server, Cloud)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sonarqube.org/sonarscanner/package.yml'; homepageUrl: 'http://redirect.sonarsource.com/doc/install-configure-scanner.html'; githubUrl: 'https://github.com/SonarSource/sonar-scanner-cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sonarqube.org/sonarscanner'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sonarqube.org/sonarscanner -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sonarqube.org/sonarscanner'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sonar-scanner', 'sonar-scanner-debug']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openjdk.org^21']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.0.1.6346', '8.0.0.6341', '7.3.0.5189', '7.2.0.5079', '7.1.0.4889', '7.0.2.4839', '7.0.1.4817', '7.0.0.4796', '6.2.1.4610', '6.2.0.4584', '6.1.0.4477', '6.0.0.4432', '5.0.2.4997', '5.0.1.3006']; aliases: readonly [] }; export type SonarqubeorgsonarscannerPackage = typeof sonarqubeorgsonarscannerPackage