You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28-7Lines changed: 28 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
# CloudSim Plus Examples [](https://github.com/cloudsimplus/cloudsimplus-examples/actions/workflows/maven.yml)
2
2
[](https://gitpod.io/#https://github.com/cloudsimplus/cloudsimplus-examples)
3
3
4
-
5
4
This module contains several [CloudSim Plus](https://github.com/cloudsimplus/cloudsimplus) examples,
6
5
including those inherited from CloudSim and new ones for exclusive features.
7
6
Those later ones are available into the [org.cloudsimplus.examples](src/main/java/org/cloudsimplus/examples) package.
@@ -14,7 +13,13 @@ The example places all the required code inside the `main()` method just for con
14
13
However, that code is not reusable. If you try to build simulations that way, you'll end up with a messy and duplicated code.
15
14
Therefore, after you understood how to build basic simulations, you may want to try checking the [BasicFirstExample.java](src/main/java/org/cloudsimplus/examples/BasicFirstExample.java). It's a structured and reusable code that gives a picture of the best ways to write your simulations.
16
15
17
-
## 1. Downloading the project
16
+
## 1. Project Requirements
17
+
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 and an updated version of maven (such as 3.8.6+). Maven is already installed on your IDE. Unless it's out-of-date or you want to build the project from the command line, you need to install maven into your operating system.
19
+
20
+
All project dependencies are download automatically by maven (including CloudSim Plus jars).
21
+
22
+
## 2. Downloading the Project Sources
18
23
19
24
You can download this project using (i) the download button on top of this page (ii) your own IDE for it or (iii) the command line as described below.
20
25
@@ -27,14 +32,30 @@ download the project source by cloning the repository issuing the following comm
0 commit comments