Commit Graph

7202 Commits

Author SHA1 Message Date
Ethan Atkins 5e3f72ad8a Do not append default watch sources with ++=
Using ++= prevents these from being overridden by the user without doing
some nasty runtime manipulations.
2018-10-08 22:00:50 -07:00
Ethan Atkins 97598efcea Bump watch anti-entropy
There have been reports that often a new build will be triggered
immediately after the previous build even when none of the files have
been modified since the start of the last build. This can happen when,
for example, a program implements save with a rename. When that occurs,
a deletion watch event may trigger the build but the corresponding
creation event may be detected outside of the current 40ms window. By
bumping this value to 500ms, we hopefully prevent the majority of these
false triggers. For unusual workflows in which this longer quarantine
period is an issue, the setting can be overridden.
2018-10-08 22:00:50 -07:00
Ethan Atkins 6ffb4108e7 Set swoval.tmpdir property on startup
This change makes the temporary shared library that is created by
the swoval file-tree-views library to be extracted into the sbt global
base directory rather than the temp file. This way if there is a leak of
shared libraries, they can easily be found in ~/.sbt rather than in,
say, /tmp (or the osx/windows equivalent location). The extracted shared
library objects will be in the path ~/.sbt/swoval-jni. There is a
shutdown hook that removes them as well as a garbage collection process
that runs in the background whenever the swoval library is loaded, so
these shouldn't leak uncontrollably.
2018-10-08 22:00:50 -07:00
Ethan Atkins da54e2fbd3 Deprecate unused method 2018-10-08 22:00:50 -07:00
Ethan Atkins 3e62b983a2 Remove intellij warnings 2018-10-08 22:00:50 -07:00
Eugene Yokota ed76503629 Fix single repo emulation script
Fixes #4330
Ref 5b179a2611 (diff-fdc3abdfd754eeb24090dbd90aeec2ce)
2018-10-09 00:23:54 -04:00
eugene yokota 082d1767a1
Merge pull request #4406 from eatkins/bump-io
Bump io
2018-10-08 23:39:40 -04:00
Ethan Atkins ed7c152f2f Remove debug command from scripted test
This spams the logs and otherwise seems to serve little purpose.
2018-10-08 13:59:40 -07:00
Ethan Atkins aeadd8db72 Remove unneeded import 2018-10-08 13:59:40 -07:00
Ethan Atkins 51be0856a1 Fix deprecation warning in scripted tests 2018-10-08 13:59:40 -07:00
Ethan Atkins 6725b39a84 Bump io to 1.3.0-M3
I had to turn off -Xfatal-warnings in commandProj because after updating
io, commandProj depends on the deprecated EventMonitor class. In #4335,
I stop using EventMonitor, but deprecate the Watched class which is both
defined and used (as an unused attribute key) in commandProj. I think we
can probably get rid of Watched in 1.4.x and certainly in a hypothetical
2.x, so hopefully we can restore -Xfatal-warnings sooner than later.

I also had to replace uses of IO.classLocationFile with
IO.classLocationPath to avoid compilation failures due to
-Xfatal-warnings.
2018-10-08 13:59:34 -07:00
eugene yokota 04e63936b3
Merge pull request #4409 from eed3si9n/wip/nightlies
Include both explicit plugin resolves and boot resolvers
2018-10-07 01:09:41 -04:00
Eugene Yokota a9fd111143 Include both explicit plugin resolves and boot resolvers
Fixes #4408
2018-10-07 00:15:58 -04:00
eugene yokota 4867e87eca
Merge pull request #4396 from eed3si9n/wip/progress
"super shell" for sbt
2018-10-06 13:07:11 -04:00
eugene yokota c2dc7d62f4
Merge pull request #4405 from eed3si9n/bport/plugincross
[1.2.x]  check PluginCross.scala consisntency
2018-10-05 14:05:40 -04:00
eugene yokota 53209acf89
Merge pull request #4404 from eed3si9n/wip/plugincross
check PluginCross.scala consisntency
2018-10-05 13:56:02 -04:00
Eugene Yokota 4c6e421d59 add onLoadMessage 2018-10-05 13:40:59 -04:00
Eugene Yokota ce9aa0c920 check PluginCross.scala consisntency 2018-10-05 13:39:59 -04:00
Eugene Yokota c64166ea8d check PluginCross.scala consisntency 2018-10-05 13:32:40 -04:00
eugene yokota 9eb42e8768
Merge pull request #4403 from eed3si9n/wip/boot-dependencyresolution
Fix resolver for compiler bridge
2018-10-05 13:05:02 -04:00
eugene yokota 7893d8ad1c
Merge pull request #4402 from eed3si9n/wip/housebump
sbt-houserules 0.3.9
2018-10-05 10:23:31 -04:00
Eugene Yokota ca7c7d3841 Fix resolver for compiler bridge
I noticed that we can't resolve the compiler bridge out of snapshot repo.
2018-10-05 04:11:08 -04:00
eugene yokota ec26c512cd
Merge pull request #4401 from eed3si9n/wip/bump
Zinc 1.2.3
2018-10-05 03:31:31 -04:00
Eugene Yokota 0d788162ae add onLoadMessage 2018-10-05 03:04:22 -04:00
Eugene Yokota fa23e785d6 sbt-houserules 0.3.9 2018-10-05 03:03:59 -04:00
Eugene Yokota 1f0680efbf Bump modules 2018-10-05 02:25:36 -04:00
Eugene Yokota 48726a0d60 Formatting 2018-10-05 02:25:21 -04:00
eugene yokota 5649ac0410
Merge pull request #4400 from eed3si9n/bport/junit-reports
[1.2.x] Duplicate reports for backwards-compat adding a name-compliant copy
2018-10-05 01:18:20 -04:00
Ignasi Marimon-Clos 3ea7533d4f Duplicate reports for backwards-compat adding a name-compliant copy 2018-10-05 00:17:33 -04:00
Eugene Yokota 6224b1dda1 Util 1.3.0-M2 2018-10-02 11:08:49 -04:00
Eugene Yokota 6dc27a3f6e change to DeleteLine 2018-10-02 08:25:28 -04:00
Eugene Yokota 1465604f8c Demote "Done updating." log to debug level 2018-10-02 08:25:28 -04:00
Eugene Yokota c316c80093 adds task progress
Fixes #4362

This implements an instance of ExecuteProgress that is enabled by default to report progress on the shell.
Combined with the scroll up logger, this takes over the bottom lines of the terminal screen and display a count up clock of the currently executing task.
2018-10-02 08:25:28 -04:00
Eugene Yokota 4be4017f06 Refactor ExecuteProgress type parameters 2018-10-02 08:24:17 -04:00
eugene yokota e2923541b1
Merge pull request #4384 from andreaTP/lspCancellationSupport
Implementing cancellation requests for LSP server
2018-10-01 15:00:43 -04:00
andrea d7c55a3d82 Implementing cancellation requests for LSP server 2018-10-01 14:39:26 +01:00
eugene yokota cc0dc0c903
Merge pull request #4393 from eed3si9n/wip/sourcedependencies
Bump tests to 2.12
2018-09-30 13:54:54 -04:00
Eugene Yokota 94e18992b5 Bump tests to 2.12 2018-09-30 12:25:21 -04:00
eugene yokota 2afff9571b
Merge pull request #4392 from eed3si9n/wip/update-test-tests
Bump up test frameworks used in scripted tests
2018-09-30 00:41:24 -04:00
Eugene Yokota 467d653efb Bump up test frameworks used in scripted tests
This is in part to test these on JDK 11 by bumping tests to Scala 2.12.7.
2018-09-29 23:19:49 -04:00
eugene yokota 18a0141fc0
Merge pull request #4390 from dwijnand/fix-DslAggregate-doc
Fix scaladoc for DslAggregate
2018-09-28 10:40:21 -04:00
Dale Wijnand b174a13b9c
Fix scaladoc for DslAggregate 2018-09-28 10:41:08 +01:00
eugene yokota 3f9972df4d
Merge pull request #4388 from eed3si9n/wip/2127
[1.2.x]  Scala 2.12.7
2018-09-28 04:58:50 -04:00
Eugene Yokota cd7a5c6f6b Use linesIterator for JDK 11 compat 2018-09-28 03:03:28 -04:00
Eugene Yokota 4e00a3e9f0 Scala 2.12.7 2018-09-28 03:03:17 -04:00
eugene yokota 1fc0cd0314
Merge pull request #4377 from eed3si9n/wip/openjdk11
Scala 2.12.7 and linesIterator
2018-09-28 02:56:37 -04:00
Eugene Yokota 2389106aa6 Use linesIterator for JDK 11 compat 2018-09-27 12:41:47 -04:00
Eugene Yokota fb168d24bb Scala 2.12.7 2018-09-27 12:38:39 -04:00
eugene yokota 144a146f07
Merge pull request #4380 from eed3si9n/wip/version
Refactor type parameter names
2018-09-25 13:09:40 -04:00
Eugene Yokota ea0fac1302 Refactor type parameter names 2018-09-25 12:02:42 -04:00