Skip to content

Commit 65eeaa7

Browse files
committed
Upgrade to Java 25 and remove Supermaven plugin link
1 parent 798987c commit 65eeaa7

5 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/setup-java@v4
2929
with:
3030
distribution: 'temurin'
31-
java-version: '21'
31+
java-version: '25'
3232
cache: 'gradle' # This caches Gradle dependencies
3333

3434
# Cache Gradle wrapper and dependencies

.mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[tools]
2-
java = "openjdk-21"
2+
java = "openjdk-25"

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
## Development Setup
2525
1. Install prerequisites:
2626
- Mise version manager
27-
- Java 21 (via Mise)
27+
- Java 25 (via Mise)
2828
- Git
2929

3030
2. Build project:

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ npx skills add anderssv/the-example/skills
5151
Install [mise](https://mise.jdx.dev/getting-started.html)
5252

5353
Mise will make sure you have the right tools and versions. If not:
54-
- Java 21
54+
- Java 25
5555
- Git
5656

5757
## Build and terminal
@@ -62,7 +62,7 @@ Mise will make sure you have the right tools and versions. If not:
6262
```
6363
2. Install Java using mise:
6464
```bash
65-
mise install # This will install Java 21 as specified in .mise.toml
65+
mise install # This will install Java 25 as specified in .mise.toml
6666
```
6767
3. Build the project:
6868
```bash
@@ -75,5 +75,4 @@ It works with most editors, but I recommend using IntelliJ IDEA.
7575
Most stuff is good with default plugins, but I also recommend:
7676
- [Mermaid](https://plugins.jetbrains.com/plugin/20146-mermaid) plugin
7777
- [Markdown](https://plugins.jetbrains.com/plugin/7793-markdown) plugin
78-
- [Supermaven](https://plugins.jetbrains.com/plugin/23893-supermaven) plugin
7978
- [GitHub Copilot](https://plugins.jetbrains.com/plugin/17718-github-copilot) plugin

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ tasks {
7979
}
8080

8181
compileJava {
82-
sourceCompatibility = "21"
83-
targetCompatibility = "21"
82+
sourceCompatibility = "25"
83+
targetCompatibility = "25"
8484
}
8585

8686
compileKotlin {

0 commit comments

Comments
 (0)