Skip to content

Commit 4e6e968

Browse files
authored
Merge pull request #33 from delphi-hub/vulnerability_fix
Vulnerability fix
2 parents 1396373 + f1fcde7 commit 4e6e968

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,18 @@ It can be used in an automated context to automatically construct fitting item s
2121
The Delphi CLI checks the provided query and passes it on to the web API of the configured platform.
2222
The results are printed to the console by default.
2323

24+
## How do I run Delphi CLI?
25+
26+
```
27+
$ git clone https://github.com/delphi-hub/delphi-cli.git
28+
$ cd delphi-cli/
29+
$ sbt stage
30+
$ cd target/universal/stage/bin
31+
$ ./delphi [command] [options]
32+
```
33+
34+
For the different commands and options, see [How can I use it?](#how-can-i-use-it)
35+
2436
## How can I use it?
2537

2638
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.
2941
Our software is available as a binary release on [GitHub](https://github.com/delphi-hub/delphi-cli/releases).
3042

3143
```
32-
$ delphi-cli --help
44+
$ delphi --help
3345
Delphi Command Line Tool (1.0.0-SNAPSHOT)
34-
Usage: delphi-cli [test|retrieve|search] [options] <args>...
46+
Usage: delphi [test|retrieve|search] [options] <args>...
3547
3648
--version Prints the version of the command line tool.
3749
--help Prints this help text.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424"
1313

1414
scalastyleConfig := baseDirectory.value / "project" / "scalastyle_config.xml"
1515

16-
val akkaVersion = "2.5.14"
16+
val akkaVersion = "2.5.16"
1717
val akkaHttpVersion = "10.1.5"
1818

1919
libraryDependencies ++= Seq(

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.15")
44

55
// coverage
66
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
7-
addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.12")
7+
addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.14")
88

99
// preparation for dependency checking
1010
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1")

0 commit comments

Comments
 (0)