-
Notifications
You must be signed in to change notification settings - Fork 312
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I obtain the pre-built version packages instead of building from the source code myself? #2130
Comments
|
You can follow dockerfile to build. https://github.com/apache/incubator-pegasus/blob/master/docker/pegasus-build-env/ubuntu2004/Dockerfile Try update maven settings to build. sudo cp /usr/share/maven/conf/settings.xml /usr/share/maven/conf/settings.xmlold
sudo vim /usr/share/maven/conf/settings.xml <?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>nexus-tencentyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus tencent下·yun</name>
<url>http://mirrors.cloud.tencent.com/nexus/repository/maven-public/</url>
</mirror>
</mirrors>
</settings> |
General Question
Could you please tell me, is there a pre-built tar package for each version? It's quite troublesome to package and build based on the image, and accessing the external network often times out with slow downloads. Or where can I obtain the pre-built packages?
The text was updated successfully, but these errors were encountered: