From 9f7b01cee61b5da6b37710c277e35ec724db92a8 Mon Sep 17 00:00:00 2001 From: Lisa Nguyen Quang Do Date: Thu, 23 May 2019 16:14:35 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ed013f..bb0503b 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,18 @@ It can be used in an automated context to automatically construct fitting item s The Delphi CLI checks the provided query and passes it on to the web API of the configured platform. The results are printed to the console by default. +## How do I run Delphi CLI? + +``` +$ git clone https://github.com/delphi-hub/delphi-cli.git +$ cd delphi-cli/ +$ sbt stage +$ cd target/universal/stage/bin +$ ./delphi [command] [options] +``` + +For the different commands and options, see [How can I use it?](#how-can-i-use-it) + ## How can I use it? The Delphi CLI is running on the Java Virtual Machine. @@ -29,9 +41,9 @@ We require a Java Runtime Environment (JRE) in version 8 or newer. Our software is available as a binary release on [GitHub](https://github.com/delphi-hub/delphi-cli/releases). ``` -$ delphi-cli --help +$ delphi --help Delphi Command Line Tool (1.0.0-SNAPSHOT) -Usage: delphi-cli [test|retrieve|search] [options] ... +Usage: delphi [test|retrieve|search] [options] ... --version Prints the version of the command line tool. --help Prints this help text. From 2ee1c51318536992e3d90517576d2ce0dafab57a Mon Sep 17 00:00:00 2001 From: Hariharan Ramanathan Date: Wed, 20 Nov 2019 03:37:15 +0100 Subject: [PATCH 2/3] Upgrading akka to 2.5.16 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index e7b264f..b4c4ea3 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,7 @@ wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424" scalastyleConfig := baseDirectory.value / "project" / "scalastyle_config.xml" -val akkaVersion = "2.5.14" +val akkaVersion = "2.5.16" val akkaHttpVersion = "10.1.5" libraryDependencies ++= Seq( From f1fcde7051b74e3a617c648963495a0b6e884f4f Mon Sep 17 00:00:00 2001 From: Hariharan Ramanathan Date: Thu, 21 Nov 2019 00:26:28 +0100 Subject: [PATCH 3/3] Upgrading sbt-codacy to 1.3.14 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 86636a4..ef657bf 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.15") // coverage addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1") -addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.12") +addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.14") // preparation for dependency checking addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1")