File tree Expand file tree Collapse file tree 5 files changed +16
-6
lines changed
api/src/main/java/org/xxdc/oss/example Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ jobs:
21
21
22
22
steps :
23
23
- uses : actions/checkout@v4
24
- - name : Set up JDK 22
24
+ - name : Set up JDK 23
25
25
uses : actions/setup-java@v4
26
26
with :
27
- java-version : ' 22 '
27
+ java-version : ' 23 '
28
28
distribution : ' temurin'
29
29
server-id : github # Value of the distributionManagement/repository/id field of the pom.xml
30
30
settings-path : ${{ github.workspace }} # location for the settings.xml file
Original file line number Diff line number Diff line change 26
26
uses : actions/setup-java@v4
27
27
with :
28
28
# https://github.com/actions/setup-java?tab=readme-ov-file#supported-distributions
29
- java-version : ' 22 '
29
+ java-version : ' 23 '
30
30
distribution : ' temurin'
31
31
32
32
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
60
60
uses : actions/setup-java@v4
61
61
with :
62
62
# https://github.com/actions/setup-java?tab=readme-ov-file#supported-distributions
63
- java-version : ' 22 '
63
+ java-version : ' 24 '
64
64
distribution : ' temurin'
65
65
66
66
# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies.
Original file line number Diff line number Diff line change @@ -73,6 +73,16 @@ The following algorithms are used by the AI BOT in this project - for a detailed
73
73
74
74
- To run the single game application, use the following command: ` ./gradlew run `
75
75
76
+ - If you don't have Java 23 installed on your system you can install it first with [ SDKMAN] ( https://sdkman.io/ ) :
77
+
78
+ ``` bash
79
+ curl -s " https://get.sdkman.io" | bash
80
+
81
+ sdk install java 23-tem
82
+
83
+ ./gradlew run
84
+ ```
85
+
76
86
---
77
87
78
88
### Related
Original file line number Diff line number Diff line change 11
11
public sealed interface Player permits HumanPlayer , BotPlayer {
12
12
13
13
/// Chooses the next valid move on the game board.
14
- /// @param board the current state of the game
14
+ /// @param gameState the current state of the game
15
15
/// @return the index of the next valid move on the board
16
16
int nextMove (GameState gameState );
17
17
}
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ testing {
62
62
63
63
val projectVersion by extra(" 1.3.1" )
64
64
65
- public val jdkVersion = 22
65
+ public val jdkVersion = 23
66
66
// Apply a specific Java toolchain to ease working on different environments.
67
67
java {
68
68
toolchain {
You can’t perform that action at this time.
0 commit comments