Replace com.ning.asynchttpclient with org.asynchttpclient (#8099)

* Replace com.ning.asynchttpclient with org.ayschttpclient
---

Fixes #8061

Motivation

Replace com.ning.asynchttpclient with org.ayschttpclient
==========

Fixes #8061

*Motivation*

 Replace com.ning.asynchttpclient with org.ayschttpclient

* Add version info in the pom file

* Fix the license issue
diff --git a/pulsar-sql/presto-distribution/LICENSE b/pulsar-sql/presto-distribution/LICENSE
index 69cd8da..1cf1b09 100644
--- a/pulsar-sql/presto-distribution/LICENSE
+++ b/pulsar-sql/presto-distribution/LICENSE
@@ -267,8 +267,6 @@
     - jetty-server-9.4.27.v20200227.jar
     - jetty-servlet-9.4.27.v20200227.jar
     - jetty-util-9.4.27.v20200227.jar
-  * Asynchronous Http Client
-    - async-http-client-1.9.40.jar
   * Apache BVal
     - bval-jsr-2.0.0.jar
   * Bytecode
@@ -407,6 +405,7 @@
   * JCTools
     - jctools-core-2.1.2.jar
   * Asynchronous Http Client
+    - async-http-client-1.6.5.jar
     - async-http-client-2.12.1.jar
     - async-http-client-netty-utils-2.12.1.jar
   * Apache Bookkeeper
diff --git a/pulsar-sql/presto-distribution/pom.xml b/pulsar-sql/presto-distribution/pom.xml
index d1eb602..22b83e1 100644
--- a/pulsar-sql/presto-distribution/pom.xml
+++ b/pulsar-sql/presto-distribution/pom.xml
@@ -46,9 +46,9 @@
         <!--fix Security Vulnerabilities-->
         <!--https://www.cvedetails.com/vulnerability-list/vendor_id-15866/product_id-42991/Fasterxml-Jackson-databind.html-->
         <jackson.databind.version>2.11.1</jackson.databind.version>
-        <com.ning.async.http.client.version>1.9.40</com.ning.async.http.client.version>
         <maven.version>3.0.5</maven.version>
         <guava.version>25.1-jre</guava.version>
+        <asynchttpclient.version>2.12.1</asynchttpclient.version>
     </properties>
 
     <dependencies>
@@ -184,9 +184,9 @@
     <dependencyManagement>
       <dependencies>
         <dependency>
-          <groupId>com.ning</groupId>
+          <groupId>org.asynchttpclient</groupId>
           <artifactId>async-http-client</artifactId>
-          <version>${com.ning.async.http.client.version}</version>
+          <version>${asynchttpclient.version}</version>
         </dependency>
         <dependency>
           <groupId>io.netty</groupId>