Commit Graph

11216 Commits

Author SHA1 Message Date
eugene yokota cb2e228549
Merge pull request #6457 from steinybot/fix/runner-scope
Remove configuration scope from runner settings
2021-04-22 08:56:28 -04:00
eugene yokota fe5497938a
Merge pull request #6458 from eed3si9n/wip/graft
In-source launcher script
2021-04-20 00:33:40 -04:00
Eugene Yokota 89fbc45bed Include LICENSE file 2021-04-20 00:12:39 -04:00
Eugene Yokota abdf89d292 Let Windows know it's bash 2021-04-20 00:07:41 -04:00
Eugene Yokota 30cb1c69d5 Fix packaging 2021-04-20 00:02:28 -04:00
Eugene Yokota 6c1fd5f5b4 Workaround spark test 2021-04-20 00:02:16 -04:00
Eugene Yokota 42464e095f Implement sbt-launch.jar download 2021-04-19 23:43:15 -04:00
Jason Pickens 223ab2b310
Remove configuration scope from runner settings 2021-04-20 15:35:06 +12:00
Eugene Yokota 2523f0f349 Merge branch 'wip/graft' of sbt/sbt-launcher-package into wip/graft 2021-04-19 10:47:09 -04:00
Eugene Yokota eb1c5461de move to launcher-package/ 2021-04-19 10:45:29 -04:00
eugene yokota 943677ed9a
Merge pull request #6456 from guilgaly/coursier-ivy-dependency-classifier
Retain classifiers for transitive dependencies when publishing to Ivy using Coursier
2021-04-19 10:13:17 -04:00
Guillaume Galy 8849bfbcd5 Retain classifiers for transitive dependencies when publishing to Ivy 2021-04-19 15:24:45 +02:00
eugene yokota 07f3da25ce
Merge pull request #6452 from xuwei-k/addDependencyTreePlugin-comment 2021-04-16 09:18:25 -04:00
kenji yoshida 61f4ed1017
fix typo 2021-04-16 15:48:53 +09:00
eugene yokota 7969a155b0
Merge pull request #6448 from Philippus/patch-1
Fix typo
2021-04-12 15:24:42 -04:00
Philippus Baalman 4bf7f3a877
Fix typo 2021-04-12 21:02:14 +02:00
eugene yokota 627f72ef87
Merge pull request #6425 from ashleymercer/issues/2853-junit-config
Allow output directory for JUnitXmlTestsListener to be configured
2021-04-12 10:15:56 -04:00
Ashley Mercer b37fc6d5be Allow JUnitXmlTestsListener output directory to be configured
Add `testReportsDirectory` setting to allow output directory for
JUnitXmlTestsListener to be configured.

Add `testReportSettings` which provides defaults values:

- by default this uses the build configuration name as a prefix so
  `target/test-reports` for `Test` config, but `target/it-reports`
  for `IntegrationTest` (previously this was hardcoded to always
  use `target/test-reports`). To override this set e.g.

  `Test / testReportsDirectory := target.value / "my-custom-dir"`

- the `JunitXmlTestsListener` is now only attached to the `Test`
  and `IntegrationTest` configs by default (previously it was added
  to the global configuration object). Any configs which inherit
  from one of these will continue to have the listener attached;
  but completely custom configurations will need to re-add with:

  `project.settings(testReportSettings)`

Fixes #2853
2021-04-12 12:17:50 +01:00
eugene yokota 039c386308
Merge pull request #6434 from adpi2/fix-6432
Fix MetaBuildLoader
2021-04-10 12:20:10 -04:00
Adrien Piquerez 7ac35d11d9 Fix MetaBuildLoader 2021-04-07 17:11:38 +02:00
eugene yokota 34a52a40f1
Merge pull request #6431 from adpi2/fix-6430
Fix unused nowarn in sbt plugins
2021-04-06 17:06:33 -04:00
Adrien Piquerez 56746d5792 Fix unused nowarn in sbt plugins 2021-04-06 15:45:52 +02:00
eugene yokota 7c266e80b6
Merge pull request #6429 from eed3si9n/wip/bumplauncher
Launcher 1.3.0
2021-04-04 02:54:04 -04:00
Eugene Yokota b78d111333 Launcher 1.3.0 2021-04-04 02:20:52 -04:00
eugene yokota c12daab9ea
Merge pull request #6428 from eed3si9n/wip/bumpzinc
Zinc 1.5.0
2021-04-04 02:19:20 -04:00
Eugene Yokota c1c02853b4 Zinc 1.5.0 2021-04-04 01:29:52 -04:00
eugene yokota 113e427e6b
Merge pull request #6427 from eed3si9n/wip/util-interface
Fixes util-interface depending on Scala
2021-04-03 19:45:10 -04:00
Eugene Yokota 72f18bda75 Fixes util-interface depending on Scala 2021-04-03 19:23:38 -04:00
eugene yokota 521dc25df5
Merge pull request #6426 from eed3si9n/wip/bumpio
IO 1.5.0
2021-04-03 18:26:40 -04:00
Eugene Yokota 2709a1e8a3 Scala 2.13.5 2021-04-03 16:02:58 -04:00
Eugene Yokota ba3a808044 IO 1.5.0 2021-04-03 16:01:45 -04:00
eugene yokota 0a0e87ff22
Merge pull request #6424 from adpi2/scala3-cross-target
Use full Scala 3 version in crossTarget
2021-04-02 10:55:05 -04:00
Ashley Mercer 255f9c5553
Merge pull request #1 from sbt/develop
Pull latest changes
2021-04-02 12:34:58 +01:00
Adrien Piquerez 09dd3b09f4 Add test for Scala 3 cross-target 2021-04-01 14:00:03 +02:00
Adrien Piquerez b0ee80e34e Use full Scala 3 version in crossTarget 2021-04-01 10:23:38 +02:00
eugene yokota 59130d4703
Merge pull request #6422 from smarter/fix-sandwich
Fix Scala 2.13-3.0 sandwich on Scala >= 3.0.0
2021-03-31 19:11:33 -04:00
Guillaume Martres 24dba24b2a Fix Scala 2.13-3.0 sandwich on Scala >= 3.0.0
The binary version of Scala >= 3.0.0 will be 3, but the logic was
hardcoded for 3.0.
2021-03-31 13:54:40 +02:00
eugene yokota e31e18927c
Merge pull request #6419 from eed3si9n/wip/clean
Fixes clean not cleaning files added to cleanFiles
2021-03-29 00:44:53 -04:00
Eugene Yokota 2a3a0f5594 Fixes clean not cleaning files added to cleanFiles
Fixes #6395

The current code assumes cleanFiles are only directories. This fixes that.
2021-03-29 00:23:50 -04:00
eugene yokota 1cb23c843b
Merge pull request #6417 from mkurz/fix_warn
Add missing versionScheme to warning
2021-03-28 16:43:07 -04:00
eugene yokota 966dff9684
Merge pull request #6418 from VlachJosef/develop
Instantiate only test runners needed by current TestDefinitions
2021-03-28 16:39:01 -04:00
Josef Vlach 0c7bc71403
Instantiate only test runners needed by current TestDefinitions 2021-03-28 20:58:18 +01:00
Matthias Kurz dc2865d407
Add missing versionScheme to warning 2021-03-28 21:31:48 +02:00
eugene yokota 3e125fa040
Merge pull request #6414 from adpi2/fix-6410
Fix internal dependency configurations
2021-03-23 16:13:53 -04:00
Adrien Piquerez 6bfe741052 Add scripted for bspInternalDependencyConfigurations 2021-03-23 16:21:59 +01:00
Adrien Piquerez 54c27d575b Fix internal dependency configurations 2021-03-23 15:58:23 +01:00
eugene yokota 8b67a07007
Merge pull request #349 from eed3si9n/wip/export-rt
Remove export-rt
2021-03-22 04:39:18 -04:00
eugene yokota 0e9ddf4afc
Merge pull request #6409 from eed3si9n/wip/bump
Zinc 1.5.0-M5 and lm 1.5.0-M9
2021-03-22 04:20:26 -04:00
Eugene Yokota 73f473efce Remove export-rt
The feature of export-rt is now folded into sbt-launcher
2021-03-22 04:19:27 -04:00
Eugene Yokota f5cba5209a Zinc 1.5.0-M5 and lm 1.5.0-M9 2021-03-22 03:47:51 -04:00