-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.sbt
33 lines (20 loc) · 979 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name := "CheckASN"
version := "1.1"
scalaVersion := "2.12.6"
cancelable in Global := true
fork in run := true
connectInput in run := true
enablePlugins(JavaAppPackaging)
enablePlugins(WindowsPlugin)
maintainer := "Joe St Sauver <[email protected]>"
packageSummary := "QueryDNSbyASN"
packageDescription := """Demonstrate querying DNSDB by ASN with Scala"""
wixProductId := "bcadded4-ab1d-40c6-a4b8-53afa01ccc54"
wixProductUpgradeId := "c90c7414-05c2-4c94-a8aa-302d49bf7894"
// javaOptions in run += "-Djavax.net.debug=ssl:handshake"
// https://mvnrepository.com/artifact/org.scala-lang.modules/scala-swing_2.12
libraryDependencies += "org.scala-lang.modules" % "scala-swing_2.12" % "2.0.0"
// https://mvnrepository.com/artifact/com.typesafe.play/play-json_2.12
libraryDependencies += "com.typesafe.play" % "play-json_2.12" % "2.6.0-M6"
// https://mvnrepository.com/artifact/org.json4s/json4s-jackson
libraryDependencies += "org.json4s" %% "json4s-jackson" % "3.6.0-M4"