Revert "[KYUUBI #4279] Use new Apache 'closer.lua' syntax for kyuubi-download to obtain engine"

This reverts commit 47a1091fa8.
This commit is contained in:
Cheng Pan 2024-03-06 18:00:44 +08:00
parent 9e7f2d0402
commit ab2b7aea4d
No known key found for this signature in database
GPG Key ID: 8001952629BCC75D
3 changed files with 5 additions and 5 deletions

View File

@ -83,7 +83,7 @@ For the Scala version for Spark engines, the server will look up the `SPARK_SCAL
## Building With Apache dlcdn Site
By default, we use `closer.lua` to download the built-in release packages of engines,
By default, we use `https://archive.apache.org/dist/` to download the built-in release packages of engines,
such as Spark or Flink.
But sometimes, you may find it hard to reach, or the download speed is too slow,
then you can define the `apache.archive.dist` by `-Pmirror-cdn` to accelerate to download speed.

View File

@ -51,7 +51,7 @@
<phase>compile</phase>
<configuration>
<skip>${spark.archive.download.skip}</skip>
<url>${spark.archive.mirror}/${spark.archive.name}?action=download</url>
<url>${spark.archive.mirror}/${spark.archive.name}</url>
</configuration>
</execution>
<execution>
@ -62,7 +62,7 @@
<phase>compile</phase>
<configuration>
<skip>${flink.archive.download.skip}</skip>
<url>${flink.archive.mirror}/${flink.archive.name}?action=download</url>
<url>${flink.archive.mirror}/${flink.archive.name}</url>
</configuration>
</execution>
<execution>
@ -73,7 +73,7 @@
<phase>compile</phase>
<configuration>
<skip>${hive.archive.download.skip}</skip>
<url>${hive.archive.mirror}/${hive.archive.name}?action=download</url>
<url>${hive.archive.mirror}/${hive.archive.name}</url>
</configuration>
</execution>
</executions>

View File

@ -123,7 +123,7 @@
<!-- Please don't upgrade the version to 4.10+, it depends on JDK 11 -->
<antlr4.version>4.9.3</antlr4.version>
<antlr.st4.version>4.3.4</antlr.st4.version>
<apache.archive.dist>http://www.apache.org/dyn/closer.lua</apache.archive.dist>
<apache.archive.dist>https://archive.apache.org/dist</apache.archive.dist>
<atlas.version>2.3.0</atlas.version>
<bouncycastle.version>1.67</bouncycastle.version>
<codahale.metrics.version>4.2.23</codahale.metrics.version>