diff --git a/README.md b/README.md
index 400ca718b..37ee79a3e 100644
--- a/README.md
+++ b/README.md
@@ -4,29 +4,27 @@ Helpful links:
- [Support Discord](https://discord.gg/6cUhkj6uZJ)
- [GitHub issues](https://github.com/Rollczi/LiteCommands/issues)
-### Dependencies (Maven or Gradle)
-Framework Core
+### Panda Repository (Maven or Gradle) ❤️
```xml
-
- dev.rollczi.litecommands
- core
- 1.0
-
+
+ panda-repository
+ https://repo.panda-lang.org/releases
+
```
-```gradle
-implementation 'dev.rollczi.litecommands:core:1.0'
+```groovy
+maven { url "https://repo.panda-lang.org/releases" }
```
-
-Velocity Extension
+### Dependencies (Maven or Gradle)
+Framework Core
```xml
dev.rollczi.litecommands
- velocity
+ core.0
1.0
```
-```gradle
-implementation 'dev.rollczi.litecommands:velocity:1.0'
+```groovy
+implementation 'dev.rollczi.litecommands:core:1.0.0'
```
### First Simple Command
@@ -50,6 +48,18 @@ this.liteCommands = VelocityFactory.builder(proxy)
.command(HelloWorldCommand.class)
.register();
```
+### Velocity Extension Dependencies (Maven or Gradle)
+Add this to your dependencies if you want use ready-made implementation for velocity.
+```xml
+
+ dev.rollczi.litecommands
+ velocity
+ 1.0.0
+
+```
+```groovy
+implementation 'dev.rollczi.litecommands:velocity:1.0.0'
+```
#### Other examples:
- [Velocity Example](https://github.com/Rollczi/LiteCommands/wiki/Velocity-Example-(simple))
diff --git a/build.gradle b/build.gradle
index 5aa9ea552..340a78526 100644
--- a/build.gradle
+++ b/build.gradle
@@ -13,7 +13,7 @@ plugins {
allprojects {
group = 'dev.rollczi.litecommands'
- version = '1.0'
+ version = '1.0.0'
apply plugin: 'java-library'
apply plugin: 'maven-publish'
@@ -39,6 +39,15 @@ subprojects {
publishing {
repositories {
mavenLocal()
+ maven {
+ name = "panda-repository"
+ url = uri("https://repo.panda-lang.org/releases")
+
+ credentials {
+ username = "$panda_user_litecommands"
+ password = "$panda_pass_litecommands"
+ }
+ }
}
}
}