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 | |
| parent | 6ca0ae07669d20a5a34ef697610df90754024035 (diff) | |
chore: Tidy repository
| -rw-r--r-- | build.gradle.kts | 4 | ||||
| -rw-r--r-- | docs/packages.md | 2 | ||||
| -rw-r--r-- | odcsim/README.md | 17 | ||||
| -rw-r--r-- | odcsim/docs/build.md (renamed from docs/build.md) | 0 | ||||
| -rw-r--r-- | odcsim/docs/concepts.md (renamed from docs/concepts.md) | 0 | ||||
| -rw-r--r-- | odcsim/docs/models.md (renamed from docs/models.md) | 0 | ||||
| -rw-r--r-- | odcsim/docs/run.md (renamed from docs/run.md) | 0 | ||||
| -rw-r--r-- | odcsim/odcsim-core/build.gradle.kts | 2 | ||||
| -rw-r--r-- | odcsim/odcsim-engine-omega/build.gradle.kts | 2 | ||||
| -rw-r--r-- | odcsim/odcsim-engine-tests/build.gradle.kts | 2 |
10 files changed, 17 insertions, 12 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 1dd5132c..90f43749 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,10 +29,6 @@ plugins { allprojects { group = "com.atlarge.opendc" version = "2.0.0" - - extra["junitJupiterVersion"] = "5.4.2" - extra["junitPlatformVersion"] = "1.4.2" - extra["githubUrl"] = "https://github.com/atlarge-research/${rootProject.name}" } tasks.wrapper { diff --git a/docs/packages.md b/docs/packages.md deleted file mode 100644 index 16465da7..00000000 --- a/docs/packages.md +++ /dev/null @@ -1,2 +0,0 @@ -# Module odcsim - 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> diff --git a/docs/build.md b/odcsim/docs/build.md index f442e70b..f442e70b 100644 --- a/docs/build.md +++ b/odcsim/docs/build.md diff --git a/docs/concepts.md b/odcsim/docs/concepts.md index e69de29b..e69de29b 100644 --- a/docs/concepts.md +++ b/odcsim/docs/concepts.md diff --git a/docs/models.md b/odcsim/docs/models.md index e69de29b..e69de29b 100644 --- a/docs/models.md +++ b/odcsim/docs/models.md diff --git a/docs/run.md b/odcsim/docs/run.md index e69de29b..e69de29b 100644 --- a/docs/run.md +++ b/odcsim/docs/run.md diff --git a/odcsim/odcsim-core/build.gradle.kts b/odcsim/odcsim-core/build.gradle.kts index 013d1598..b17cac39 100644 --- a/odcsim/odcsim-core/build.gradle.kts +++ b/odcsim/odcsim-core/build.gradle.kts @@ -22,6 +22,8 @@ * SOFTWARE. */ +description = "Framework for discrete event simulation in Kotlin" + /* Build configuration */ plugins { `kotlin-library-convention` diff --git a/odcsim/odcsim-engine-omega/build.gradle.kts b/odcsim/odcsim-engine-omega/build.gradle.kts index d4383303..4540c389 100644 --- a/odcsim/odcsim-engine-omega/build.gradle.kts +++ b/odcsim/odcsim-engine-omega/build.gradle.kts @@ -22,6 +22,8 @@ * SOFTWARE. */ +description = "Single-threaded reference implementation for the odcsim API" + /* Build configuration */ plugins { `kotlin-library-convention` diff --git a/odcsim/odcsim-engine-tests/build.gradle.kts b/odcsim/odcsim-engine-tests/build.gradle.kts index 7b236300..9e4931b7 100644 --- a/odcsim/odcsim-engine-tests/build.gradle.kts +++ b/odcsim/odcsim-engine-tests/build.gradle.kts @@ -22,6 +22,8 @@ * SOFTWARE. */ +description = "Conformance suite for implementors of the odcsim API" + /* Build configuration */ plugins { `kotlin-library-convention` |
