Skip to content

Commit

Permalink
1.9.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Rollczi committed Apr 21, 2022
1 parent 251c2cd commit 301c7ed
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 36 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Framework Core
<dependency>
<groupId>dev.rollczi.litecommands</groupId>
<artifactId>core</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```
```groovy
implementation 'dev.rollczi.litecommands:core:1.9.0'
implementation 'dev.rollczi.litecommands:core:1.9.1'
```

### First Simple Command
Expand Down Expand Up @@ -56,11 +56,11 @@ Add this to your dependencies if you want use ready-made implementation for velo
<dependency>
<groupId>dev.rollczi.litecommands</groupId>
<artifactId>velocity</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```
```groovy
implementation 'dev.rollczi.litecommands:velocity:1.9.0'
implementation 'dev.rollczi.litecommands:velocity:1.9.1'
```

#### All extensions:
Expand Down
52 changes: 26 additions & 26 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {

allprojects {
group = 'dev.rollczi.litecommands'
version = '1.9.0'
version = '1.9.1'

apply plugin: 'java-library'
apply plugin: 'maven-publish'
Expand Down Expand Up @@ -51,31 +51,31 @@ subprojects {
repositories {
mavenLocal()

// maven {
// name = "panda-repository"
// url = uri("https://repo.panda-lang.org/releases")
// credentials {
// username = "$panda_user_litecommands"
// password = "$panda_pass_litecommands"
// }
// }
//
// maven {
// name = "eternalcode-repository"
// url = uri("https://repo.eternalcode.pl/releases")
// credentials {
// username = "$lucky_user_litecommands"
// password = "$lucky_pass_litecommands"
// }
// }
// maven {
// name = "mine-repository"
// url = uri("https://repository.minecodes.pl/releases")
// credentials {
// username = "$mine_user"
// password = "$mine_pass"
// }
// }
maven {
name = "panda-repository"
url = uri("https://repo.panda-lang.org/releases")
credentials {
username = "$panda_user_litecommands"
password = "$panda_pass_litecommands"
}
}

maven {
name = "eternalcode-repository"
url = uri("https://repo.eternalcode.pl/releases")
credentials {
username = "$lucky_user_litecommands"
password = "$lucky_pass_litecommands"
}
}
maven {
name = "mine-repository"
url = uri("https://repository.minecodes.pl/releases")
credentials {
username = "$mine_user"
password = "$mine_pass"
}
}
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions litecommands-bukkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Maven
<dependency>
<groupId>dev.rollczi.litecommands</groupId>
<artifactId>bukkit</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```
Gradle
```groovy
implementation 'dev.rollczi.litecommands:bukkit:1.9.0'
implementation 'dev.rollczi.litecommands:bukkit:1.9.1'
```

#### Examples:
Expand Down
4 changes: 2 additions & 2 deletions litecommands-bungee/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Maven
<dependency>
<groupId>dev.rollczi.litecommands</groupId>
<artifactId>bungee</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```
Gradle
```groovy
implementation 'dev.rollczi.litecommands:bungee:1.9.0'
implementation 'dev.rollczi.litecommands:bungee:1.9.1'
```

#### Examples:
Expand Down
4 changes: 2 additions & 2 deletions litecommands-velocity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Maven
<dependency>
<groupId>dev.rollczi.litecommands</groupId>
<artifactId>velocity</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```
Gradle
```groovy
implementation 'dev.rollczi.litecommands:velocity:1.9.0'
implementation 'dev.rollczi.litecommands:velocity:1.9.1'
```

#### Examples:
Expand Down

0 comments on commit 301c7ed

Please sign in to comment.