MavenWrapperDownloader.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. * http://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.io.*;
  17. import java.net.*;
  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
  24. * provided.
  25. */
  26. private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
  27. + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
  28. /**
  29. * Path to the maven-wrapper.properties file, which might contain a downloadUrl
  30. * property to 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
  39. * url for the wrapper.
  40. */
  41. private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
  42. public static void main(String args[]) {
  43. System.out.println("- Downloader started");
  44. File baseDirectory = new File(args[0]);
  45. System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
  46. // If the maven-wrapper.properties exists, read it and check if it contains a
  47. // custom
  48. // wrapperUrl parameter.
  49. File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
  50. String url = DEFAULT_DOWNLOAD_URL;
  51. if (mavenWrapperPropertyFile.exists()) {
  52. FileInputStream mavenWrapperPropertyFileInputStream = null;
  53. try {
  54. mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
  55. Properties mavenWrapperProperties = new Properties();
  56. mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
  57. url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
  58. } catch (IOException e) {
  59. System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
  60. } finally {
  61. try {
  62. if (mavenWrapperPropertyFileInputStream != null) {
  63. mavenWrapperPropertyFileInputStream.close();
  64. }
  65. } catch (IOException e) {
  66. // Ignore ...
  67. }
  68. }
  69. }
  70. System.out.println("- Downloading from: " + url);
  71. File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
  72. if (!outputFile.getParentFile().exists()) {
  73. if (!outputFile.getParentFile().mkdirs()) {
  74. System.out.println(
  75. "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
  76. }
  77. }
  78. System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
  79. try {
  80. downloadFileFromURL(url, outputFile);
  81. System.out.println("Done");
  82. System.exit(0);
  83. } catch (Throwable e) {
  84. System.out.println("- Error downloading");
  85. e.printStackTrace();
  86. System.exit(1);
  87. }
  88. }
  89. private static void downloadFileFromURL(String urlString, File destination) throws Exception {
  90. if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
  91. String username = System.getenv("MVNW_USERNAME");
  92. char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
  93. Authenticator.setDefault(new Authenticator() {
  94. @Override
  95. protected PasswordAuthentication getPasswordAuthentication() {
  96. return new PasswordAuthentication(username, password);
  97. }
  98. });
  99. }
  100. URL website = new URL(urlString);
  101. ReadableByteChannel rbc;
  102. rbc = Channels.newChannel(website.openStream());
  103. FileOutputStream fos = new FileOutputStream(destination);
  104. fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
  105. fos.close();
  106. rbc.close();
  107. }
  108. }