blob: 53dd4913094d14db7bf54c87d2f5a27b6f5a22fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/*
* Configuration file for mvn cache
*/
return [
'mavenBaseUrls' => [
'https://repo1.maven.org/maven2',
'https://jcenter.bintray.com',
'https://jitpack.io/',
'https://repo.maven.apache.org/maven2/',
'https://oss.sonatype.org/content/repositories/snapshots/',
'https://oss.sonatype.org/content/repositories/releases/',
'https://plugins.gradle.org/m2' //Gradle plugin repo
],
'logfile' => 'logs/mvncache.log',
];
?>
|