From 57626e1c3371413fe2df9b2bf10bd9430d4e590f Mon Sep 17 00:00:00 2001 From: Sebastian Erives Date: Wed, 27 Nov 2024 17:46:23 -0600 Subject: [PATCH] Fix docs url in README --- README.md | 7 ++++--- gradle.properties | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5db3baa..75bfbc2 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ transfer it onto your robot! -# Learn how to install and use the simulator in the [documentation here](https://deltacv.gitbook.io/eocv-sim/) +# Learn how to install and use the simulator in the [documentation here](https://docs.deltacv.org/eocv-sim) ### (Common users won't need to scroll down any further from here - the gitbook has everything you need) # [Buy me a coffee](https://buymeacoffee.com/serivesmejia) @@ -46,7 +46,7 @@ Since OpenCV in Java uses a native library, which is platform specific, the simu ## Downloading and documentation -Follow the steps in [this page](https://deltacv.gitbook.io/eocv-sim/basics/downloading-eocv-sim) to download the sim. The rest of the documentation can also be found [there](https://deltacv.gitbook.io/eocv-sim/). +Follow the steps in [this page](https://docs.deltacv.org/eocv-sim/downloading-eocv-sim) to download the sim. The rest of the documentation can also be found [there](https://deltacv.gitbook.io/eocv-sim/). ## Adding EOCV-Sim as a dependency for plugin development @@ -55,7 +55,8 @@ Follow the steps in [this page](https://deltacv.gitbook.io/eocv-sim/basics/downl ### Gradle ```groovy repositories { - maven { url 'https://jitpack.com' } //add jitpack as a maven repo + maven { url 'https://jitpack.com' } //add jitpack as a maven repo + mavenCentral() //add maven central as a maven repo } dependencies { diff --git a/gradle.properties b/gradle.properties index eadc428..7ffa4ca 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ RELEASE_SIGNING_ENABLED=true POM_DESCRIPTION=Develop, test, and tune your EasyOpenCV pipelines directly on your computer with a simple GUI ! POM_INCEPTION_YEAR=2024 -POM_URL=https://github.com/deltacv/EOCV-Sim/ +POM_URL=https://docs.deltacv.org/eocv-sim POM_LICENSE_NAME=MIT License POM_LICENSE_URL=https://opensource.org/license/mit @@ -16,4 +16,4 @@ POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/deltacv/EOCV-Sim.git POM_DEVELOPER_ID=serivesmejia POM_DEVELOPER_NAME=Sebastian Erives -POM_DEVELOPER_URL=https://github.com/serivesmejia/ +POM_DEVELOPER_URL=https://github.com/serivesmejia/ \ No newline at end of file