File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -1228,6 +1228,14 @@ build += {
1228
1228
extra.test-tasks: ["compile"]
1229
1229
}
1230
1230
1231
+ // dependency of scala-debugger. we track the develop branch, since
1232
+ // master seems neglected/outdated
1233
+ ${vars.base} {
1234
+ name: "scallop"
1235
+ uri: ${vars.uris.scallop-uri}
1236
+ extra.projects: ["jvm"] // no Scala.js or Scala Native plz
1237
+ }
1238
+
1231
1239
]}
1232
1240
1233
1241
//// space: jawn_0_10
@@ -1341,6 +1349,21 @@ build += {
1341
1349
extra.test-tasks: "compile"
1342
1350
}
1343
1351
1352
+ // depends on ammonite
1353
+ ${vars.base} {
1354
+ name: "scala-debugger"
1355
+ uri: ${vars.uris.scala-debugger-uri}
1356
+ extra.exclude: [
1357
+ // no sbt plugins plz!
1358
+ "sbtScalaDebuggerPlugin"
1359
+ // Missing dependency: the library org.senkbeil#grus-layouts
1360
+ "scalaDebuggerDocs"
1361
+ ]
1362
+ // java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded
1363
+ // perhaps only the -Xmx is really necessary, but let's try it with all of the repo's own .jvmopts:
1364
+ extra.options: ["-Xms1g", "-Xmx4g", "-Xss2m", "-XX:MaxMetaspaceSize=256m"]
1365
+ }
1366
+
1344
1367
// (here in this space because of ammonite-ops dependency)
1345
1368
// forked (refreshed September 2017) to remove coursier
1346
1369
// caution, refreshing the fork any further can be problematic;
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ vars.uris: {
77
77
scala-async-uri: "https://github.com/scala/scala-async.git"
78
78
scala-collections-laws-uri: "https://github.com/Ichoran/scala-collections-laws.git#upgrade-to-2.12.2"
79
79
scala-continuations-uri: "https://github.com/scala/scala-continuations.git"
80
+ scala-debugger-uri: "https://github.com/ensime/scala-debugger.git"
80
81
scala-gopher-uri: "https://github.com/rssh/scala-gopher.git"
81
82
scala-java8-compat-uri: "https://github.com/scala/scala-java8-compat.git"
82
83
scala-js-uri: "https://github.com/scala-js/scala-js.git"
@@ -110,6 +111,7 @@ vars.uris: {
110
111
scalatex-uri: "https://github.com/lihaoyi/scalatex.git"
111
112
scalaz-uri: "https://github.com/scalaz/scalaz.git#series/7.2.x"
112
113
scalikejdbc-uri: "https://github.com/scalikejdbc/scalikejdbc.git"
114
+ scallop-uri: "https://github.com/scallop/scallop.git#develop"
113
115
scodec-bits-uri: "https://github.com/scodec/scodec-bits.git#series/1.1.x"
114
116
scodec-uri: "https://github.com/scodec/scodec.git#series/1.10.x"
115
117
scopt-uri: "https://github.com/scopt/scopt.git#scopt3"
You can’t perform that action at this time.
0 commit comments