Skip to content

Vulnerability fix #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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] <args>...
Usage: delphi [test|retrieve|search] [options] <args>...

--version Prints the version of the command line tool.
--help Prints this help text.
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down