diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2019-11-20 23:02:58 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2019-11-20 23:02:58 +0100 |
| commit | 254e49e15c47c91336d2af3a0948aa474e62de5f (patch) | |
| tree | 9a03fa90434adade4cba6d936c7950b9f7bf215e /odcsim/README.md | |
| parent | 6ca0ae07669d20a5a34ef697610df90754024035 (diff) | |
chore: Tidy repository
Diffstat (limited to 'odcsim/README.md')
| -rw-r--r-- | odcsim/README.md | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/odcsim/README.md b/odcsim/README.md index 00d6a2fe..5863b055 100644 --- a/odcsim/README.md +++ b/odcsim/README.md @@ -21,9 +21,8 @@ The documentation is located in the [docs/](docs/) directory and is divided as f * [Main Concepts](docs/concepts.md) * [Building a Model](docs/build.md) * [Running a Model](docs/run.md) -* [Pre-built Models](docs/models.md) * [API Reference](https://atlarge-research.github.io/opendc-simulator) -* [Contributing Guide](CONTRIBUTING.md) +* [Contributing Guide](../CONTRIBUTING.md) ## Getting Started @@ -35,13 +34,19 @@ The package `odcsim-core` is required to construct a simulation model. A `odcsim-engine-*` package is needed for running the simulation model. -**Gradle** +#### Gradle +Groovy ```groovy -compile 'com.atlarge.odcsim:odcsim-core:2.0.0' -compile 'com.atlarge.odcsim:odcsim-engine-omega:2.0.0' +implementation 'com.atlarge.odcsim:odcsim-core:2.0.0' +runtime 'com.atlarge.odcsim:odcsim-engine-omega:2.0.0' +``` +Kotlin +```groovy +implementation("com.atlarge.odcsim:odcsim-core:2.0.0") +runtime("com.atlarge.odcsim:odcsim-engine-omega:2.0.0") ``` -**Maven** +#### Maven ```xml <dependency> <groupId>com.atlarge.odcsim</groupId> |
