MavenWrapperDownloader.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Copyright 2007-present the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * https://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. import java.net.*;
  17. import java.io.*;
  18. import java.nio.channels.*;
  19. import java.util.Properties;
  20. public class MavenWrapperDownloader {
  21. private static final String WRAPPER_VERSION = "0.5.6";
  22. /**
  23. * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
  24. */
  25. private static final String DEFAULT_DOWNLOAD_URL =
  26. "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" + WRAPPER_VERSION + "/maven-wrapper-"
  27. + WRAPPER_VERSION + ".jar";
  28. /**
  29. * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
  30. * use instead of the default one.
  31. */
  32. private static final String MAVEN_WRAPPER_PROPERTIES_PATH = ".mvn/wrapper/maven-wrapper.properties";
  33. /**
  34. * Path where the maven-wrapper.jar will be saved to.
  35. */
  36. private static final String MAVEN_WRAPPER_JAR_PATH = ".mvn/wrapper/maven-wrapper.jar";
  37. /**
  38. * Name of the property which should be used to override the default download url for the wrapper.
  39. */
  40. private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
  41. public static void main(String args[]) {
  42. System.out.println("- Downloader started");
  43. File baseDirectory = new File(args[0]);
  44. System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
  45. // If the maven-wrapper.properties exists, read it and check if it contains a custom
  46. // wrapperUrl parameter.
  47. File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
  48. String url = DEFAULT_DOWNLOAD_URL;
  49. if (mavenWrapperPropertyFile.exists()) {
  50. FileInputStream mavenWrapperPropertyFileInputStream = null;
  51. try {
  52. mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
  53. Properties mavenWrapperProperties = new Properties();
  54. mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
  55. url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
  56. } catch (IOException e) {
  57. System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
  58. } finally {
  59. try {
  60. if (mavenWrapperPropertyFileInputStream != null) {
  61. mavenWrapperPropertyFileInputStream.close();
  62. }
  63. } catch (IOException e) {
  64. // Ignore ...
  65. }
  66. }
  67. }
  68. System.out.println("- Downloading from: " + url);
  69. File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
  70. if (!outputFile.getParentFile().exists()) {
  71. if (!outputFile.getParentFile().mkdirs()) {
  72. System.out.println(
  73. "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
  74. }
  75. }
  76. System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
  77. try {
  78. downloadFileFromURL(url, outputFile);
  79. System.out.println("Done");
  80. System.exit(0);
  81. } catch (Throwable e) {
  82. System.out.println("- Error downloading");
  83. e.printStackTrace();
  84. System.exit(1);
  85. }
  86. }
  87. private static void downloadFileFromURL(String urlString, File destination) throws Exception {
  88. if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
  89. String username = System.getenv("MVNW_USERNAME");
  90. char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
  91. Authenticator.setDefault(new Authenticator() {
  92. @Override protected PasswordAuthentication getPasswordAuthentication() {
  93. return new PasswordAuthentication(username, password);
  94. }
  95. });
  96. }
  97. URL website = new URL(urlString);
  98. ReadableByteChannel rbc;
  99. rbc = Channels.newChannel(website.openStream());
  100. FileOutputStream fos = new FileOutputStream(destination);
  101. fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
  102. fos.close();
  103. rbc.close();
  104. }
  105. }