# Bad Mirror This is OSS mirror site for: * Cygwin * Maven / Gradle ## Configuration Hints ### Cygwin [Cygwin Repo](/cygwin/) Add the following address as the installation path when setup.exe asked you to choose the mirror. ``` https://www.badmirror.org/cygwin/ ``` ### Maven / Gradle [Maven Repo](/maven2/) For Maven, add mirror configuration to your ~/.m2/settings.xml. The full documentation of settings.xml could be found at [Maven project site](https://maven.apache.org/settings.html). ```xml <mirror> <id>badmirror</id> <name>badmirror maven</name> <url>https://www.badmirror.org/maven2/</url> <mirrorOf>central</mirrorOf> </mirror> ``` For Gradle, put repo configuration to your project's build.gradle. ```gradle allprojects { repositories { maven{ url 'https://www.badmirror.org/maven2/'} } } ``` ## Sponsors None!!!