├── .asf.yaml ├── .github ├── ISSUE_TEMPLATE │ ├── BUG.yml │ ├── FEATURE.yml │ └── config.yml ├── dependabot.yml ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── maven-verify.yml │ ├── pr-automation.yml │ ├── release-drafter.yml │ ├── shellcheck-posix.yml │ └── stale.yml ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── NOTICE ├── README.md ├── maven-wrapper-distribution ├── pom.xml └── src │ ├── assembly │ ├── bin.xml │ ├── only-script.xml │ ├── script.xml │ └── source.xml │ ├── resources │ ├── mvn │ │ └── wrapper │ │ │ └── MavenWrapperDownloader.java │ ├── mvnw │ ├── mvnw.cmd │ ├── mvnwDebug │ ├── mvnwDebug.cmd │ ├── only-mvnw │ ├── only-mvnw.cmd │ ├── only-mvnwDebug │ └── only-mvnwDebug.cmd │ └── site │ ├── apt │ └── index.apt.vm │ └── site.xml ├── maven-wrapper-plugin ├── pom.xml └── src │ ├── it │ ├── projects │ │ ├── default │ │ │ ├── pom.xml │ │ │ └── verify.groovy │ │ ├── includeDebug │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── mavenversion-empty1 │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── verify.groovy │ │ ├── mavenversion-empty2 │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── verify.groovy │ │ ├── mavenversion │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── sh_type_only-script │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── sha256_distribution │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── sha256_type_only-script │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── sha256_wrapper │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── snapshot_distribution_test │ │ │ ├── pom.xml │ │ │ ├── setup.groovy │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── test_mvnd │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── type_bin │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── type_only-script-fail │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── type_only-script │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── type_script │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── type_source │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ ├── type_unknown │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ ├── test.properties │ │ │ └── verify.groovy │ │ └── upgrade_with_existing_type │ │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ └── maven-wrapper.properties │ │ │ ├── invoker.properties │ │ │ ├── pom.xml │ │ │ └── verify.groovy │ ├── repository │ │ ├── apache-maven-4.9.999-20250710.120440-1-bin.zip │ │ │ └── apache-maven-4.9.999-SNAPSHOT │ │ │ │ └── bin │ │ │ │ ├── mvn │ │ │ │ └── mvn.cmd │ │ └── apache-maven-4.9.999-20250710.120440-1.pom │ └── settings.xml │ ├── main │ └── java │ │ └── org │ │ └── apache │ │ └── maven │ │ └── plugins │ │ └── wrapper │ │ └── WrapperMojo.java │ ├── site │ ├── markdown │ │ ├── index.md.vm │ │ └── usage.md │ └── site.xml │ └── test │ └── java │ └── org │ └── apache │ └── maven │ └── plugins │ └── wrapper │ └── WrapperMojoTest.java ├── maven-wrapper ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── apache │ │ └── maven │ │ └── wrapper │ │ ├── BootstrapMainStarter.java │ │ ├── DefaultDownloader.java │ │ ├── Downloader.java │ │ ├── HashAlgorithmVerifier.java │ │ ├── Installer.java │ │ ├── Logger.java │ │ ├── MavenWrapperMain.java │ │ ├── PathAssembler.java │ │ ├── SystemPropertiesHandler.java │ │ ├── Verifier.java │ │ ├── WrapperConfiguration.java │ │ ├── WrapperExecutor.java │ │ └── cli │ │ ├── AbstractCommandLineConverter.java │ │ ├── AbstractPropertiesCommandLineConverter.java │ │ ├── CommandLineArgumentException.java │ │ ├── CommandLineConverter.java │ │ ├── CommandLineOption.java │ │ ├── CommandLineParser.java │ │ ├── ParsedCommandLine.java │ │ ├── ParsedCommandLineOption.java │ │ ├── ProjectPropertiesCommandLineConverter.java │ │ └── SystemPropertiesCommandLineConverter.java │ ├── site │ ├── apt │ │ └── index.apt │ └── site.xml │ └── test │ ├── java │ └── org │ │ └── apache │ │ └── maven │ │ └── wrapper │ │ ├── DownloaderTest.java │ │ ├── HashAlgorithmVerifierTest.java │ │ ├── InstallerTest.java │ │ ├── PathAssemblerTest.java │ │ ├── SnapshotDistributionTest.java │ │ ├── SystemPropertiesHandlerTest.java │ │ └── WrapperExecutorTest.java │ └── resources │ ├── org │ └── apache │ │ └── maven │ │ └── wrapper │ │ └── wrapper.properties │ └── zip-slip.zip ├── pom.xml └── src └── site ├── markdown ├── CHANGELOG.old.md └── index.md ├── resources └── download.cgi ├── site.xml └── xdoc └── download.xml.vm /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/ISSUE_TEMPLATE/BUG.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/ISSUE_TEMPLATE/FEATURE.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/maven-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/workflows/maven-verify.yml -------------------------------------------------------------------------------- /.github/workflows/pr-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/workflows/pr-automation.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck-posix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/workflows/shellcheck-posix.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /maven-wrapper-distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/assembly/bin.xml -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/assembly/only-script.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/assembly/only-script.xml -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/assembly/script.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/assembly/script.xml -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/assembly/source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/assembly/source.xml -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/resources/mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/resources/mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/resources/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/resources/mvnw -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/resources/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/resources/mvnw.cmd -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/resources/mvnwDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/resources/mvnwDebug -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/resources/mvnwDebug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/resources/mvnwDebug.cmd -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/resources/only-mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/resources/only-mvnw -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/resources/only-mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/resources/only-mvnw.cmd -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/resources/only-mvnwDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/resources/only-mvnwDebug -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/resources/only-mvnwDebug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/resources/only-mvnwDebug.cmd -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /maven-wrapper-distribution/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-distribution/src/site/site.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/default/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/default/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/default/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/default/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/includeDebug/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/includeDebug/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/includeDebug/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/includeDebug/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/includeDebug/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/includeDebug/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/mavenversion-empty1/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/mavenversion-empty1/invoker.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/mavenversion-empty1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/mavenversion-empty1/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/mavenversion-empty1/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/mavenversion-empty1/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/mavenversion-empty2/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/mavenversion-empty2/invoker.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/mavenversion-empty2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/mavenversion-empty2/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/mavenversion-empty2/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/mavenversion-empty2/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/mavenversion/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/mavenversion/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/mavenversion/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/mavenversion/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/mavenversion/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/mavenversion/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sh_type_only-script/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sh_type_only-script/invoker.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sh_type_only-script/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sh_type_only-script/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sh_type_only-script/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sh_type_only-script/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sh_type_only-script/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sh_type_only-script/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sha256_distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sha256_distribution/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sha256_distribution/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sha256_distribution/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sha256_distribution/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sha256_distribution/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sha256_type_only-script/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sha256_type_only-script/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sha256_type_only-script/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sha256_type_only-script/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sha256_type_only-script/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sha256_type_only-script/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sha256_wrapper/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sha256_wrapper/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sha256_wrapper/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sha256_wrapper/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/sha256_wrapper/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/sha256_wrapper/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/snapshot_distribution_test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/snapshot_distribution_test/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/snapshot_distribution_test/setup.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/snapshot_distribution_test/setup.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/snapshot_distribution_test/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/snapshot_distribution_test/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/snapshot_distribution_test/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/snapshot_distribution_test/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/test_mvnd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/test_mvnd/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/test_mvnd/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/test_mvnd/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/test_mvnd/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/test_mvnd/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_bin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_bin/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_bin/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_bin/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_bin/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_bin/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_only-script-fail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_only-script-fail/invoker.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_only-script-fail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_only-script-fail/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_only-script-fail/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_only-script-fail/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_only-script-fail/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_only-script-fail/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_only-script/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_only-script/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_only-script/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_only-script/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_only-script/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_only-script/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_script/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_script/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_script/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_script/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_script/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_script/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_source/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_source/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_source/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_source/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_source/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_source/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_unknown/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_unknown/invoker.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_unknown/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_unknown/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_unknown/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_unknown/test.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/type_unknown/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/type_unknown/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/upgrade_with_existing_type/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/upgrade_with_existing_type/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/upgrade_with_existing_type/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/upgrade_with_existing_type/invoker.properties -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/upgrade_with_existing_type/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/upgrade_with_existing_type/pom.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/projects/upgrade_with_existing_type/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/projects/upgrade_with_existing_type/verify.groovy -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/repository/apache-maven-4.9.999-20250710.120440-1-bin.zip/apache-maven-4.9.999-SNAPSHOT/bin/mvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/repository/apache-maven-4.9.999-20250710.120440-1-bin.zip/apache-maven-4.9.999-SNAPSHOT/bin/mvn -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/repository/apache-maven-4.9.999-20250710.120440-1-bin.zip/apache-maven-4.9.999-SNAPSHOT/bin/mvn.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/repository/apache-maven-4.9.999-20250710.120440-1-bin.zip/apache-maven-4.9.999-SNAPSHOT/bin/mvn.cmd -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/repository/apache-maven-4.9.999-20250710.120440-1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/repository/apache-maven-4.9.999-20250710.120440-1.pom -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/it/settings.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/main/java/org/apache/maven/plugins/wrapper/WrapperMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/main/java/org/apache/maven/plugins/wrapper/WrapperMojo.java -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/site/markdown/index.md.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/site/markdown/index.md.vm -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/site/markdown/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/site/markdown/usage.md -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/site/site.xml -------------------------------------------------------------------------------- /maven-wrapper-plugin/src/test/java/org/apache/maven/plugins/wrapper/WrapperMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper-plugin/src/test/java/org/apache/maven/plugins/wrapper/WrapperMojoTest.java -------------------------------------------------------------------------------- /maven-wrapper/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/pom.xml -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/BootstrapMainStarter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/BootstrapMainStarter.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/DefaultDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/DefaultDownloader.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/Downloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/Downloader.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/HashAlgorithmVerifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/HashAlgorithmVerifier.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/Installer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/Installer.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/Logger.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/MavenWrapperMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/MavenWrapperMain.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/PathAssembler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/PathAssembler.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/SystemPropertiesHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/SystemPropertiesHandler.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/Verifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/Verifier.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/WrapperConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/WrapperConfiguration.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/WrapperExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/WrapperExecutor.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/AbstractCommandLineConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/AbstractCommandLineConverter.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/AbstractPropertiesCommandLineConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/AbstractPropertiesCommandLineConverter.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/CommandLineArgumentException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/CommandLineArgumentException.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/CommandLineConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/CommandLineConverter.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/CommandLineOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/CommandLineOption.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/CommandLineParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/CommandLineParser.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/ParsedCommandLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/ParsedCommandLine.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/ParsedCommandLineOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/ParsedCommandLineOption.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/ProjectPropertiesCommandLineConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/ProjectPropertiesCommandLineConverter.java -------------------------------------------------------------------------------- /maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/SystemPropertiesCommandLineConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/main/java/org/apache/maven/wrapper/cli/SystemPropertiesCommandLineConverter.java -------------------------------------------------------------------------------- /maven-wrapper/src/site/apt/index.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/site/apt/index.apt -------------------------------------------------------------------------------- /maven-wrapper/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/site/site.xml -------------------------------------------------------------------------------- /maven-wrapper/src/test/java/org/apache/maven/wrapper/DownloaderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/test/java/org/apache/maven/wrapper/DownloaderTest.java -------------------------------------------------------------------------------- /maven-wrapper/src/test/java/org/apache/maven/wrapper/HashAlgorithmVerifierTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/test/java/org/apache/maven/wrapper/HashAlgorithmVerifierTest.java -------------------------------------------------------------------------------- /maven-wrapper/src/test/java/org/apache/maven/wrapper/InstallerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/test/java/org/apache/maven/wrapper/InstallerTest.java -------------------------------------------------------------------------------- /maven-wrapper/src/test/java/org/apache/maven/wrapper/PathAssemblerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/test/java/org/apache/maven/wrapper/PathAssemblerTest.java -------------------------------------------------------------------------------- /maven-wrapper/src/test/java/org/apache/maven/wrapper/SnapshotDistributionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/test/java/org/apache/maven/wrapper/SnapshotDistributionTest.java -------------------------------------------------------------------------------- /maven-wrapper/src/test/java/org/apache/maven/wrapper/SystemPropertiesHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/test/java/org/apache/maven/wrapper/SystemPropertiesHandlerTest.java -------------------------------------------------------------------------------- /maven-wrapper/src/test/java/org/apache/maven/wrapper/WrapperExecutorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/test/java/org/apache/maven/wrapper/WrapperExecutorTest.java -------------------------------------------------------------------------------- /maven-wrapper/src/test/resources/org/apache/maven/wrapper/wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/test/resources/org/apache/maven/wrapper/wrapper.properties -------------------------------------------------------------------------------- /maven-wrapper/src/test/resources/zip-slip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/maven-wrapper/src/test/resources/zip-slip.zip -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/pom.xml -------------------------------------------------------------------------------- /src/site/markdown/CHANGELOG.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/src/site/markdown/CHANGELOG.old.md -------------------------------------------------------------------------------- /src/site/markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/src/site/markdown/index.md -------------------------------------------------------------------------------- /src/site/resources/download.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/src/site/resources/download.cgi -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/site/xdoc/download.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-wrapper/HEAD/src/site/xdoc/download.xml.vm --------------------------------------------------------------------------------