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
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,13 @@
3
3
Reference implementation of an agent library written in Java. This library handles all the communication with [Chronos Control](https://github.com/Chronos-EaaS/Chronos-Control) including the upload of the results. It provides an interface with all necessary methods required for adding Chronos support to an existing evaluation client.
4
4
5
5
## Getting Started
6
-
* Add `maven { url 'https://dbis-nexus.dmi.unibas.ch/repository/maven2/' }` to the `repositories` in your gradle build file.
7
-
* Add `implementation group: 'ch.unibas.dmi.dbis.chronos', name: 'chronos-agent', version: '2.3.1'` to your `dependencies`.
8
-
* Extend the `AbstractChronosAgent` class, call `YourClass.start()` in your `main` method, and you are good to go!
9
-
> Assuming that you already have a running [Chronos Control](https://github.com/Chronos-EaaS/Chronos-Control/) instance :smirk:)
10
6
7
+
* Chronos Agent is published to Maven Central. Make sure that you have `mavenCentral()` to the `repositories` in your gradle build file.
8
+
* Add `implementation group: 'org.chronos-eaas', name: 'chronos-agent', version: '2.3.2'` to your `dependencies`.
9
+
* Extend the `AbstractChronosAgent` class, call `YourClass.start()` in your `main` method, and you are good to go!
10
+
> Assuming that you already have a running [Chronos Control](https://github.com/Chronos-EaaS/Chronos-Control/) instance)
11
11
12
-
>**Fat Jar** If you require a fat jar, please clone the repository and run `gradlew shadowJar`. The fat jar is located in `build/libs/`. You need at least Java 8 for building.
12
+
>**Shadow Jar** If you require a shadow jar (a jar file containing all dependencies), please clone the repository and run `gradlew shadowJar`. The shadow jar is then located in `build/libs/`. You need at least Java 8 for building.
13
13
14
14
## Roadmap
15
15
See the [open issues](https://github.com/Chronos-EaaS/Chronos-Agent/issues) for a list of proposed features (and known issues).
0 commit comments