File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed
src/main/scala/de/upb/cs/swt/delphi/cli Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -41,17 +41,9 @@ wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424"
4141
4242scalastyleConfig := baseDirectory.value / " project" / " scalastyle_config.xml"
4343
44- val http4sVersion = " 0.21.0-M6"
45-
4644// Only necessary for SNAPSHOT releases
4745resolvers += Resolver .sonatypeRepo(" snapshots" )
4846
49- libraryDependencies ++= Seq (
50- " org.http4s" %% " http4s-dsl" % http4sVersion,
51- " org.http4s" %% " http4s-blaze-client" % http4sVersion,
52- " org.http4s" %% " http4s-circe" % http4sVersion
53- )
54-
5547libraryDependencies += " com.github.scopt" %% " scopt" % " 3.7.1"
5648libraryDependencies += " io.spray" %% " spray-json" % " 1.3.5"
5749libraryDependencies += " de.vandermeer" % " asciitable" % " 0.3.2"
Original file line number Diff line number Diff line change @@ -29,16 +29,6 @@ object DelphiCLI {
2929
3030 def main (args : Array [String ]): Unit = {
3131
32- def getEnvOrElse (envVar : String , defaultPath : String ) = sys.env.getOrElse(envVar, defaultPath)
33-
34- val javaLibPath = getEnvOrElse(" JAVA_LIB_PATH" , " /usr/lib/jvm/default-java/lib/" )
35-
36- val trustStorePath = getEnvOrElse(" JAVA_TRUSTSTORE" , " /usr/lib/jvm/default-java/lib/security/cacerts" )
37-
38- // This only is allowed to be set for GraalVM compiles...
39- // System.setProperty("java.library.path", javaLibPath)
40- // System.setProperty("javax.net.ssl.trustStore", trustStorePath)
41-
4232 cliParser.parse(args, Config ()) match {
4333 case Some (c) =>
4434
You can’t perform that action at this time.
0 commit comments