Skip to content

Commit 9a30149

Browse files
committed
Upgrade to CloudSim Plus 9.0.0-snapshot using JDK 25
- Update dependencies for JDK 25. - Update CI build workflow Signed-off-by: Manoel Campos <[email protected]>
1 parent 501b889 commit 9a30149

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/maven.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build
1+
name: build
22
on:
33
push:
44
branches: [ master, main ]
@@ -8,14 +8,14 @@ on:
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
name: Java 24 Build
11+
name: Java Build
1212
steps:
1313
- uses: actions/checkout@v4
1414
- name: Setup Java
1515
uses: actions/setup-java@v4
1616
with:
17+
java-version: 25
1718
distribution: 'adopt'
18-
java-version: 24
1919
cache: 'maven'
2020
- name: Maven Build
2121
run: mvn -B package

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Therefore, after you understood how to build basic simulations, you may want to
1515

1616
## 1. Project Requirements
1717

18-
CloudSim Plus Examples is a Java 17 project that uses maven for build and dependency management. To build and run the project, you need JDK 17+ installed.
18+
CloudSim Plus Examples is a Java 25 project that uses maven for build and dependency management. To build and run the project, you need JDK 25+ installed.
1919

2020
All project dependencies are downloaded automatically by maven (including CloudSim Plus jars).
2121

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050

5151
<properties>
5252
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
53-
<license-maven-plugin.version>3.0</license-maven-plugin.version>
53+
<license-maven-plugin.version>5.0.0</license-maven-plugin.version>
5454
<!-- License file to be used by the com.mycila.license-maven-plugin -->
5555
<copyrightfile>../COPYRIGHT</copyrightfile>
56-
<maven.compiler.release>24</maven.compiler.release>
56+
<maven.compiler.release>25</maven.compiler.release>
5757
<logback.version>1.5.18</logback.version>
5858
</properties>
5959

0 commit comments

Comments
 (0)