Skip to content

Commit

Permalink
updated gradle, java and kotlin versions gradle to 8.5, java to 21, k…
Browse files Browse the repository at this point in the history
…otlin to 2.0.0 (#11)
  • Loading branch information
polischuks authored Oct 24, 2024
1 parent 96941c3 commit d129b82
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ The plugin contains the following versions structure:
```gradle
hs {
java {
version = "17"
version = "21"
}
kotlin {
version = "1.8.20"
javaVersion = "17"
version = "2.0.0"
javaVersion = "21"
}
gradle {
version = "7.6"
version = "8.5"
}
spring {
Expand Down Expand Up @@ -89,5 +89,5 @@ hs.android.minSdkVersion
To override version you can assign needed version to the variables before using them:

```
hs.java.version = "18"
hs.java.version = "21"
```
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ gradlePlugin {
}

group 'org.hyperskill'
version '1.3'
version '1.4'

publishing {
publications {
Expand All @@ -27,7 +27,7 @@ publishing {
}
repositories {
maven {
url "https://packages.jetbrains.team/maven/p/academy/hyperskill-hspc"
url "https://packages.jetbrains.team/maven/p/hyperskill-hs-test/maven"
credentials {
username = spaceUsername
password = spacePassword
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/hyperskill/plugin/versions/Gradle.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class Gradle {

public String version = "7.6";
public String version = "8.5";

public Gradle() {}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/hyperskill/plugin/versions/Java.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class Java {

public String version = "17";
public String version = "21";

public Java() {}

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/hyperskill/plugin/versions/Kotlin.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

public class Kotlin {

public String version = "1.8.20";
public String javaVersion = "17";
public String version = "2.0.0";
public String javaVersion = "21";

public Kotlin() {}
}

0 comments on commit d129b82

Please sign in to comment.