Skip to content

Commit

Permalink
1.8.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Rollczi committed Feb 26, 2022
1 parent 5746d04 commit 9091faf
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 28 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ Framework Core
<dependency>
<groupId>dev.rollczi.litecommands</groupId>
<artifactId>core</artifactId>
<version>1.8.0</version>
<version>1.8.1</version>
</dependency>
```
```groovy
implementation 'dev.rollczi.litecommands:core:1.8.0'
implementation 'dev.rollczi.litecommands:core:1.8.1'
```

### First Simple Command
Expand Down Expand Up @@ -55,11 +55,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.8.0</version>
<version>1.8.1</version>
</dependency>
```
```groovy
implementation 'dev.rollczi.litecommands:velocity:1.8.0'
implementation 'dev.rollczi.litecommands:velocity:1.8.1'
```

#### All extensions:
Expand Down
36 changes: 18 additions & 18 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.8.0'
version = '1.8.1'

apply plugin: 'java-library'
apply plugin: 'maven-publish'
Expand Down Expand Up @@ -47,23 +47,23 @@ 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 = "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"
// }
// }
}
}
}
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.8.0</version>
<version>1.8.1</version>
</dependency>
```
Gradle
```groovy
implementation 'dev.rollczi.litecommands:bukkit:1.8.0'
implementation 'dev.rollczi.litecommands:bukkit:1.8.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.8.0</version>
<version>1.8.1</version>
</dependency>
```
Gradle
```groovy
implementation 'dev.rollczi.litecommands:bungee:1.8.0'
implementation 'dev.rollczi.litecommands:bungee:1.8.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.8.0</version>
<version>1.8.1</version>
</dependency>
```
Gradle
```groovy
implementation 'dev.rollczi.litecommands:velocity:1.8.0'
implementation 'dev.rollczi.litecommands:velocity:1.8.1'
```

#### Examples:
Expand Down

0 comments on commit 9091faf

Please sign in to comment.