Simply add the mirror url as a maven repository in the settings.gradle
file and re-sync project:
pluginManagement {
repositories {
maven("https://en-mirror.ir")
}
}
dependencyResolutionManagement {
...
repositories {
maven("https://en-mirror.ir")
}
}
Note
Clone of mirror is launched at en-mirror.ir
and ready to use. this mirror contains google
,central
and jitpack
mavens.
By default, all repositories are mirrored. To mirror only a specific repository, include its key in the mirror URL, like this:
maven("https://en-mirror.ir/jitpack")
Configure your mirror config.php
:
$config = [
'cache_folder'=>'cache',
'cache_dependencies'=>true,
'repositories'=> [
"google"=>"https://dl.google.com/dl/android/maven2",
"central"=>"https://repo.maven.apache.org/maven2",
"jitpack"=>"https://jitpack.io"
]
]
cache_dependencies
: This mirror have a feature to cache dependencies in server, so if you want to enable/disable that you need to change cache_dependencies
property in config array.
cache_folder
: You can specify the cache folder name with this property.
repositories
: You can put or remove repositories which you want to get mirrored here (keys are optional and will be used for repository filtering in mirror url)
To self-host the mirror on your own server, start the PHP server, and the source path in public_html will serve as your mirror URL.
Note
The mirror URL will be the address of the source root on your server. For example, if you clone the source in the x
folder, the URL will be: https://your-domain.com/x
Note
You can set up mirror with cloudflare worker tho, see.
این میرور جهت دانلود دیپندنسی ها و وابستگی های گریدل بدون تداخلات اینترنتی و تحریم ها توسعه داده شده است.
به سادگی تنها آدرس میرور خودتان را در فایل settings.gradle
به عنوان maven اضافه کنید:
pluginManagement {
repositories {
maven("https://en-mirror.ir")
}
}
dependencyResolutionManagement {
...
repositories {
maven("https://en-mirror.ir")
}
}
این میرور بصورت پیشفرض تمامی مخزن های قرارداده شده در فایل کانفیگ را شامل خواهد شد، برای میرور کردن فقط یک مخزن خاص کافی است کلید آن را در انتهای آدرس میرور قرار دهید و پروژه خود را سینک کنید:
maven("https://en-mirror.ir/jitpack")
جهت کانفیگ میرور از طریق فایل config.php
اقدام کنید:
$config = [
'cache_folder'=>'cache',
'cache_dependencies'=>true,
'repositories'=> [
"google"=>"https://dl.google.com/dl/android/maven2",
"central"=>"https://repo.maven.apache.org/maven2",
"jitpack"=>"https://jitpack.io"
]
]
cache_dependencies
: این میرور امکان کش کردن دیپندنسی هارا دارد، برای تعیین آن این مقدار را تغییر دهید.
cache_folder
: با این مقدار میتوانید پوشه کش دیپدنسی هارا تعیین کنید
repositories
: در این پراپرتی مخازنی که میخواهید میرور شوند را بگذارید یا اگر قصد میرور مخزنی رو ندارید از اینجا حذف کنید. (کلید ها دلخواه هستند و در فیلتر کردن میرور مخزن ها استفاده میشوند)
برای اجرای این میرور در سرور شخصی خودتان یک php server استارت کنید و سورس کد را داخل مسیر public_html قرار دهید، آیپی سرور یا دامنه متصل شده به آن، آدرس میرور شما خواهد بود.
Note
آدرس میرور، آدرس مسیر روت سورس کد در سرور شما خواهد بود، برای مثال اگر سورس کد را داخل پوشه x قرار دهید، آدرس میرور https://your-domain.com/x
خواهد بود.
Note
همچنین میتوانید با استفاده از ورکر های کلادفلر میرور خود را راه اندازی کنید، اینجا را ببینید.