Skip to content

Commit c2ef885

Browse files
authored
Update README.md for badge and link corrections
1 parent a4ccda3 commit c2ef885

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<div align="center">
44

55
[![](https://github.com/Despical/CommandFramework/actions/workflows/build.yml/badge.svg)](https://github.com/Despical/CommandFramework/actions/workflows/build.yml)
6-
[![](https://img.shields.io/maven-central/v/com.github.despical/command-framework.svg?label=Maven%20Central)](https://search.maven.org/artifact/com.github.despical/command-framework)
6+
[![](https://img.shields.io/maven-central/v/com.github.despical/command-framework.svg?label=Maven%20Central)](https://repo1.maven.org/maven2/com/github/despical/command-framework)
77
[![](https://img.shields.io/badge/License-GPLv3-blue.svg)](../LICENSE)
8-
[![](https://img.shields.io/badge/javadoc-latest-lime.svg)](https://javadoc.jitpack.io/com/github/Despical/CommandFramework/latest/javadoc/index.html)
8+
[![](https://img.shields.io/badge/javadoc-latest-blue.svg)](https://despical.github.io/CommandFramework)
99

1010
A lightweight, annotation-based command framework inspired by Bukkit’s event system. It eliminates the need to register commands in plugin.yml
1111
while still allowing you to define usage, description, permissions, aliases, sender types, cooldowns, and argument limits directly in code.
@@ -15,8 +15,8 @@ Includes extra helper methods to streamline command handling and improve code re
1515

1616
## Documentation
1717
- [Wiki](https://github.com/Despical/CommandFramework/wiki)
18-
- [JavaDocs](https://javadoc.jitpack.io/com/github/Despical/CommandFramework/latest/javadoc/index.html)
19-
- [Maven Central](https://repo1.maven.org/maven2/com/github/despical/command-framework/)
18+
- [Javadocs](https://despical.github.io/CommandFramework)
19+
- [Maven Central](https://repo1.maven.org/maven2/com/github/despical/command-framework)
2020
- [Sonatype Central](https://central.sonatype.com/artifact/com.github.despical/command-framework)
2121

2222
## Using Command Framework
@@ -25,16 +25,16 @@ To add this project as a dependency to your project, add the following to your p
2525
### Maven dependency
2626
```xml
2727
<dependency>
28-
<groupId>com.github.Despical</groupId>
29-
<artifactId>CommandFramework</artifactId>
28+
<groupId>com.github.despical</groupId>
29+
<artifactId>command-framework</artifactId>
3030
<version>1.5.3</version>
3131
</dependency>
3232
```
3333

3434
### Gradle dependency
3535
```groovy
3636
dependencies {
37-
implementation 'com.github.Despical:CommandFramework:1.5.3'
37+
implementation 'com.github.despical:command-framework:1.5.3'
3838
}
3939
```
4040

0 commit comments

Comments
 (0)