diff options
author | Florian Zschocke <f.zschocke+git@gmail.com> | 2023-04-03 22:23:28 +0200 |
---|---|---|
committer | Florian Zschocke <f.zschocke+git@gmail.com> | 2023-04-03 22:23:28 +0200 |
commit | afa4f7e0b4332747c647d51aa1b89cc410fdb067 (patch) | |
tree | 89207b48355c37fb55f0cd0095603b5be1a000c3 | |
parent | 89e74edac5e892cda3b3d42f710d018a0277adec (diff) | |
download | gitblit-afa4f7e0b4332747c647d51aa1b89cc410fdb067.tar.gz gitblit-afa4f7e0b4332747c647d51aa1b89cc410fdb067.zip |
Adjust URLs to gitblit.github.io to point to gitblit-org.github.io
Adjust other references to the old 'gitblit' organisation on Github to
point to the new 'gitblit-org' organisation.
-rw-r--r-- | .github/workflows/ci-build.yml | 2 | ||||
-rw-r--r-- | README.markdown | 2 | ||||
-rw-r--r-- | src/main/java/com/gitblit/manager/PluginManager.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index eab73378..97defdbe 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -32,7 +32,7 @@ jobs: - name: Setup Moxie run: | - wget http://gitblit.github.io/moxie/maven/com/gitblit/moxie/moxie+ant/0.9.4/moxie+ant-0.9.4.tar.gz + wget http://gitblit-org.github.io/moxie/maven/com/gitblit/moxie/moxie+ant/0.9.4/moxie+ant-0.9.4.tar.gz tar -xzf moxie+ant-0.9.4.tar.gz moxie-0.9.4/bin/moxie -version diff --git a/README.markdown b/README.markdown index bc9638d9..18fd316c 100644 --- a/README.markdown +++ b/README.markdown @@ -57,5 +57,5 @@ Make sure to clone using `--recursive` OR to execute `git submodule update --ini Building Tips & Tricks
----------------------
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>
-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.
+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.
diff --git a/src/main/java/com/gitblit/manager/PluginManager.java b/src/main/java/com/gitblit/manager/PluginManager.java index b3936e5d..c3ba1b82 100644 --- a/src/main/java/com/gitblit/manager/PluginManager.java +++ b/src/main/java/com/gitblit/manager/PluginManager.java @@ -315,7 +315,7 @@ public class PluginManager implements IPluginManager, PluginStateListener { @Override public synchronized boolean refreshRegistry(boolean verifyChecksum) { - String dr = "http://gitblit.github.io/gitblit-registry/plugins.json"; + String dr = "http://gitblit-org.github.io/gitblit-registry/plugins.json"; String url = runtimeManager.getSettings().getString(Keys.plugins.registry, dr); try { File file = download(url, verifyChecksum); |