Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HSPC-173: updated gradle, java and kotlin versions #11

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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() {}
}