You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2019/11/20 09:13:06 UTC

[incubator-iotdb] branch rel/0.9 updated: copy maven-wrapper and add license

This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a commit to branch rel/0.9
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/rel/0.9 by this push:
     new 774ec66  copy maven-wrapper and add license
774ec66 is described below

commit 774ec66744c187116c85902cda958fdce5ce6d29
Author: qiaojialin <64...@qq.com>
AuthorDate: Wed Nov 20 17:12:48 2019 +0800

    copy maven-wrapper and add license
---
 .mvn/wrapper/MavenWrapperDownloader.java | 60 ++++++++++++++++++++------------
 LICENSE                                  |  7 ++++
 grafana/pom.xml                          |  2 +-
 jdbc/pom.xml                             |  2 +-
 pom.xml                                  |  6 ++--
 service-rpc/pom.xml                      |  2 +-
 6 files changed, 50 insertions(+), 29 deletions(-)

diff --git a/.mvn/wrapper/MavenWrapperDownloader.java b/.mvn/wrapper/MavenWrapperDownloader.java
index afb969b..311a9d7 100644
--- a/.mvn/wrapper/MavenWrapperDownloader.java
+++ b/.mvn/wrapper/MavenWrapperDownloader.java
@@ -1,30 +1,31 @@
 /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
+ * Copyright 2007-present the original author or authors.
  *
- *     http://www.apache.org/licenses/LICENSE-2.0
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
  *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
+import java.net.*;
+import java.io.*;
+import java.nio.channels.*;
 import java.util.Properties;
 
 public class MavenWrapperDownloader {
 
+  private static final String WRAPPER_VERSION = "0.5.5";
   /**
    * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
    */
-  private static final String DEFAULT_DOWNLOAD_URL =
-      "https://repo1.maven.org/maven2/io/takari/maven-wrapper/0.5.3/maven-wrapper-0.5.3.jar";
+  private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
+      + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
 
   /**
    * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
@@ -45,13 +46,15 @@ public class MavenWrapperDownloader {
   private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
 
   public static void main(String args[]) {
+    System.out.println("- Downloader started");
     File baseDirectory = new File(args[0]);
+    System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
 
     // If the maven-wrapper.properties exists, read it and check if it contains a custom
     // wrapperUrl parameter.
     File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
     String url = DEFAULT_DOWNLOAD_URL;
-    if (mavenWrapperPropertyFile.exists()) {
+    if(mavenWrapperPropertyFile.exists()) {
       FileInputStream mavenWrapperPropertyFileInputStream = null;
       try {
         mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
@@ -59,9 +62,10 @@ public class MavenWrapperDownloader {
         mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
         url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
       } catch (IOException e) {
+        System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
       } finally {
         try {
-          if (mavenWrapperPropertyFileInputStream != null) {
+          if(mavenWrapperPropertyFileInputStream != null) {
             mavenWrapperPropertyFileInputStream.close();
           }
         } catch (IOException e) {
@@ -69,13 +73,13 @@ public class MavenWrapperDownloader {
         }
       }
     }
+    System.out.println("- Downloading from: " + url);
 
     File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
-    if (!outputFile.getParentFile().exists()) {
-      if (!outputFile.getParentFile().mkdirs()) {
+    if(!outputFile.getParentFile().exists()) {
+      if(!outputFile.getParentFile().mkdirs()) {
         System.out.println(
-            "- ERROR creating output direcrory '" + outputFile.getParentFile().getAbsolutePath()
-                + "'");
+            "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
       }
     }
     System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
@@ -91,6 +95,16 @@ public class MavenWrapperDownloader {
   }
 
   private static void downloadFileFromURL(String urlString, File destination) throws Exception {
+    if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
+      String username = System.getenv("MVNW_USERNAME");
+      char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
+      Authenticator.setDefault(new Authenticator() {
+        @Override
+        protected PasswordAuthentication getPasswordAuthentication() {
+          return new PasswordAuthentication(username, password);
+        }
+      });
+    }
     URL website = new URL(urlString);
     ReadableByteChannel rbc;
     rbc = Channels.newChannel(website.openStream());
@@ -100,4 +114,4 @@ public class MavenWrapperDownloader {
     rbc.close();
   }
 
-}
+}
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
index 820bcc8..18a4690 100644
--- a/LICENSE
+++ b/LICENSE
@@ -217,6 +217,13 @@ The following classes are modified from Apache Hive, which is under Apache Licen
 
 ------------
 
+The following class is copied from maven-wrapper (https://github.com/takari/maven-wrapper),
+which is under Apache License 2.0:
+
+./.mvn/wrapper/MavenWrapperDownloader.java
+
+------------
+
 The following class is modified from Apache commons-collections
 
 ./tsfile/src/main/java/org/apache/iotdb/tsfile/utils/Murmur128Hash.java
diff --git a/grafana/pom.xml b/grafana/pom.xml
index 84f772d..f3e5e39 100644
--- a/grafana/pom.xml
+++ b/grafana/pom.xml
@@ -165,7 +165,7 @@
                                     <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
                                         <resource>META-INF/spring.schemas</resource>
                                     </transformer>
-                                    <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
+                                    <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
                                     <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                         <mainClass>${start-class}</mainClass>
                                     </transformer>
diff --git a/jdbc/pom.xml b/jdbc/pom.xml
index bf7aa48..0b3a4b0 100644
--- a/jdbc/pom.xml
+++ b/jdbc/pom.xml
@@ -126,7 +126,7 @@
                                                 </goals>
                                             </pluginExecutionFilter>
                                             <action>
-                                                <ignore />
+                                                <ignore/>
                                             </action>
                                         </pluginExecution>
                                     </pluginExecutions>
diff --git a/pom.xml b/pom.xml
index 84fba25..60d0d3c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -533,7 +533,7 @@
                         <id>enforce-version-convergence</id>
                         <configuration>
                             <rules>
-                                <dependencyConvergence />
+                                <dependencyConvergence/>
                             </rules>
                         </configuration>
                         <goals>
@@ -579,7 +579,7 @@
                                 </requireJavaVersion>
                                 <!-- Disabled for now as it breaks the ability to build single modules -->
                                 <!--reactorModuleConvergence/-->
-                                <banVulnerable implementation="org.sonatype.ossindex.maven.enforcer.BanVulnerableDependencies" />
+                                <banVulnerable implementation="org.sonatype.ossindex.maven.enforcer.BanVulnerableDependencies"/>
                             </rules>
                         </configuration>
                     </execution>
@@ -727,7 +727,7 @@
                     <instrumentation>
                         <ignoreTrivial>true</ignoreTrivial>
                     </instrumentation>
-                    <check />
+                    <check/>
                 </configuration>
                 <executions>
                     <execution>
diff --git a/service-rpc/pom.xml b/service-rpc/pom.xml
index c1df159..178b9b6 100644
--- a/service-rpc/pom.xml
+++ b/service-rpc/pom.xml
@@ -100,7 +100,7 @@
                                                 </goals>
                                             </pluginExecutionFilter>
                                             <action>
-                                                <ignore />
+                                                <ignore/>
                                             </action>
                                         </pluginExecution>
                                         <pluginExecution>