Skip to content

Commit

Permalink
add preview repo
Browse files Browse the repository at this point in the history
  • Loading branch information
kgyrtkirk committed Apr 8, 2020
1 parent 4a290c8 commit 158cdc4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/java/hu/rxd/toolbox/switcher/ApacheMirrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ public String decodeStackVersion(String version) {
@Override
public Collection<Mirror> of0(Version ver) {
List<Mirror> ret = new ArrayList<Mirror>();
String apache_mirror = "http://xenia.sote.hu/ftp/mirrors/www.apache.org/";
String archive_mirror = "https://archive.apache.org/dist/";
ret.add(new ApacheMirror(apache_mirror));
ret.add(new ApacheMirror(archive_mirror));
ret.add(new ApacheMirror("http://xenia.sote.hu/ftp/mirrors/www.apache.org/"));
ret.add(new ApacheMirror("https://archive.apache.org/dist/"));
ret.add(new ApacheMirror("https://rxd.hu/misc/preview/"));
return ret;
}

Expand Down

0 comments on commit 158cdc4

Please sign in to comment.