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"
41
41
42
42
scalastyleConfig := baseDirectory.value / " project" / " scalastyle_config.xml"
43
43
44
- val http4sVersion = " 0.21.0-M6"
45
-
46
44
// Only necessary for SNAPSHOT releases
47
45
resolvers += Resolver .sonatypeRepo(" snapshots" )
48
46
49
- libraryDependencies ++= Seq (
50
- " org.http4s" %% " http4s-dsl" % http4sVersion,
51
- " org.http4s" %% " http4s-blaze-client" % http4sVersion,
52
- " org.http4s" %% " http4s-circe" % http4sVersion
53
- )
54
-
55
47
libraryDependencies += " com.github.scopt" %% " scopt" % " 3.7.1"
56
48
libraryDependencies += " io.spray" %% " spray-json" % " 1.3.5"
57
49
libraryDependencies += " de.vandermeer" % " asciitable" % " 0.3.2"
Original file line number Diff line number Diff line change @@ -29,16 +29,6 @@ object DelphiCLI {
29
29
30
30
def main (args : Array [String ]): Unit = {
31
31
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
-
42
32
cliParser.parse(args, Config ()) match {
43
33
case Some (c) =>
44
34
You can’t perform that action at this time.
0 commit comments