Skip to content

Commit e906235

Browse files
authored
Merge pull request #1442 from glmdev/patch-1
Fix Moxie URL in build.xml (#1441)
2 parents 83f8ee7 + afa4f7e commit e906235

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Setup Moxie
3434
run: |
35-
wget http://gitblit.github.io/moxie/maven/com/gitblit/moxie/moxie+ant/0.9.4/moxie+ant-0.9.4.tar.gz
35+
wget http://gitblit-org.github.io/moxie/maven/com/gitblit/moxie/moxie+ant/0.9.4/moxie+ant-0.9.4.tar.gz
3636
tar -xzf moxie+ant-0.9.4.tar.gz
3737
moxie-0.9.4/bin/moxie -version
3838

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ Make sure to clone using `--recursive` OR to execute `git submodule update --ini
5757
Building Tips & Tricks
5858
----------------------
5959
1. If you are running Ant from an ANSI-capable console, consider setting the `MX_COLOR` environment variable before executing Ant.<pre>set MX_COLOR=true</pre>
60-
2. The build script will honor your Maven proxy settings. If you need to fine-tune this, please review the [settings.moxie](http://gitblit.github.io/moxie/settings.html) documentation.
60+
2. The build script will honor your Maven proxy settings. If you need to fine-tune this, please review the [settings.moxie](http://gitblit-org.github.io/moxie/settings.html) documentation.
6161

build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
66
Retrieve Moxie Toolkit
77
8-
documentation @ http://gitblit.github.io/moxie
8+
documentation @ http://gitblit-org.github.io/moxie
99
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1010
-->
1111
<property name="moxie.version" value="0.9.4" />
12-
<property name="moxie.url" value="http://gitblit.github.io/moxie/maven" />
12+
<property name="moxie.url" value="http://gitblit-org.github.io/moxie/maven" />
1313
<property name="moxie.jar" value="moxie-toolkit-${moxie.version}.jar" />
1414
<property name="moxie.dir" value="${user.home}/.moxie" />
1515

src/main/java/com/gitblit/manager/PluginManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ public synchronized PluginWrapper whichPlugin(Class<?> clazz) {
315315

316316
@Override
317317
public synchronized boolean refreshRegistry(boolean verifyChecksum) {
318-
String dr = "http://gitblit.github.io/gitblit-registry/plugins.json";
318+
String dr = "http://gitblit-org.github.io/gitblit-registry/plugins.json";
319319
String url = runtimeManager.getSettings().getString(Keys.plugins.registry, dr);
320320
try {
321321
File file = download(url, verifyChecksum);

0 commit comments

Comments
 (0)