Commit Graph

10242 Commits

Author SHA1 Message Date
eugene yokota 291059a72b Merge pull request #2378 from dwijnand/use-ivyConfiguration-in-updateSbtClassifiers-in-compilers-to-fetch-compiler-bridge-sources
FPORT: Adds bootIvyConfiguration to grab compiler bridge source. Fixes #2336
2016-01-16 14:54:27 -05:00
eugene yokota c88f439291 Merge pull request #2375 from dwijnand/fport/0.13.10-release-notes
FPORT: Release notes for 0.13.10
2016-01-16 14:52:05 -05:00
eugene yokota fbfb8ec04d Merge pull request #2374 from dwijnand/fport/disable-task-pre-port-checks
FPORT: Fixes #2302. Don't check pre and post conditions in sbt.Execute by default.
2016-01-16 14:51:45 -05:00
eugene yokota b72065c258 Merge pull request #2372 from dwijnand/update-sbt-plugins-in-1.0.x
FPORT: Upgrade sbt plugins. Fixes #2368
2016-01-16 14:50:34 -05:00
Eugene Yokota 01b46a6d6a Include sbt-ivy-snapshots to launchconfig
Forward-port of #2338.

Include sbt-ivy-snapshots to launchconfig
Prior to this change, the launchconfig for sbt was generated using
Transform's resource generator so releases would include
`typesafe-ivy-releases` repo, and snapshot releases would include
`typesafe-ivy-snapshots` and `sonatype-snapshots` repos in addition.
This is no longer useful since nightly builds are now published to
`sbt-ivy-snapshots` instead, which is backed by Bintray.

This removes the switching logic, so both `typesafe-ivy-releases` and
`sbt-ivy-snapshots` repos are always included into the launchconfig.
This removes the step of needing to download a launcher just to try the
nightly builds.
2016-01-16 16:52:12 +00:00
Dale Wijnand d514bea6cc FPORT: Release notes for name hashing private members fix
Forward-port of #2339.
2016-01-16 16:35:18 +00:00
Eugene Yokota 6c1b054249 Adds bootIvyConfiguration to grab compiler bridge source. Fixes #2336
Forward-port of #2337.

As described in #2336, I noticed that when using 0.13 nightly from
Bintray, sbt was unable to locate the compiler source.
Since `updateSbtClassifiers` is already set up to download sbt's own
sources, the `ivyConfiguration` should be reused. However, `compilers`
is a derived task, which is unable to depend on a scoped key.
To workaround this I had to create a new key called
`bootIvyConfiguration`. This should now use the metabuild's resolvers
to download the compiler bridge source.
2016-01-16 16:11:51 +00:00
Eugene Yokota e3a2b94dd1 FPORT: Release notes for 0.13.10
Forward-port of #2315.
2016-01-16 12:41:07 +00:00
Johannes Rudolph 643361f7b1 FPORT: Fixes #2302. Don't check pre and post conditions in sbt.Execute by default.
Forward-port of #2303.

The checking code has bad run time characteristics and would need to be fixed
for large projects with deep task dependency chains.

The code in sbt.Execute has been in production for a long time so it seems safe
enough to drop the extra checks by default. To debug issues, you can set
`-Dsbt.execute.extrachecks=true` to revert to the old behavior.
2016-01-16 12:35:49 +00:00
Dale Wijnand de10d81f07 Upgrade sbt plugins. Fixes #2368
Cherry-picked 84cba9669c from branch 0.13 to 1.0.x

Tested manually:

  $ grep 'version.*:=' build.sbt
  version := "0.13.10-SNAPSHOT",
  $ git archive --prefix=sbt-0.13.10-SNAPSHOT/ -o ~/Desktop/sbt-0.13.10-SNAPSHOT.tgz HEAD
  $ cd ~/Desktop
  $ ls
  sbt-0.13.10-SNAPSHOT.tgz
  $ tar xfz sbt-0.13.10-SNAPSHOT.tgz
  $ cd sbt-0.13.10-SNAPSHOT/
  $ sbt info
  [info] Loading global plugins from /Users/dnw/.dotfiles/.sbt/0.13/plugins
  [info] Loading project definition from /Users/dnw/Desktop/sbt-0.13.10-SNAPSHOT/project
  [info] Updating {file:/Users/dnw/Desktop/sbt-0.13.10-SNAPSHOT/project/}sbt-0-13-10-snapshot-build...
  [info] Resolving org.fusesource.jansi#jansi;1.4 ...
  [info] Done updating.
  [warn] There may be incompatibilities among your library dependencies.
  [warn] Here are some of the libraries that were evicted:
  [warn]  * com.typesafe.sbt:sbt-site:0.8.1 -> 0.8.2
  [warn] Run 'evicted' to see detailed eviction warnings
  [info] Compiling 12 Scala sources to /Users/dnw/Desktop/sbt-0.13.10-SNAPSHOT/project/target/scala-2.10/sbt-0.13/classes...
  [info] This is sbt 0.13.9
  [info] The current project is {file:/Users/dnw/Desktop/sbt-0.13.10-SNAPSHOT/}sbtRoot 0.13.10-SNAPSHOT
  [info] The current project is built against Scala 2.10.6
  [info] Available Plugins: sbt.plugins.IvyPlugin, sbt.plugins.JvmPlugin, sbt.plugins.CorePlugin...
  [info] sbt, sbt plugins, and build definitions are using Scala 2.10.5
2016-01-16 12:19:09 +00:00
Johannes Rudolph d6d53ff0e9 0.8.1 notes fixes 2016-01-10 11:25:05 +01:00
Johannes Rudolph 9fe12b8380 next version 2016-01-08 18:41:36 +01:00
Johannes Rudolph 88f0699398 bump version to 0.8.1 2016-01-08 18:38:20 +01:00
Johannes Rudolph c9d1f81149 added `dependencyStats`: a tabular console output showing an overview of jar-sizes, fixes #83 2016-01-08 18:30:01 +01:00
eugene yokota 40e598f641 Merge pull request #2356 from dwijnand/drop-sealed-from-Append-typeclasses
Drop sealed from the typeclasses in Append
2016-01-08 12:19:33 -05:00
Johannes Rudolph f7e3a49e93 add `dependency-list`, fixes #85 2016-01-08 17:29:42 +01:00
Johannes Rudolph 00d64878aa dependencyDot: fix rendering of HTML labels, fixes #84 2016-01-08 17:29:42 +01:00
Johannes Rudolph cc2c3d1d9e bump version 2016-01-08 17:29:42 +01:00
Dale Wijnand c5949268ef Drop sealed from the typeclasses in Append
Forward port of #2322
2016-01-08 16:45:06 +01:00
Eugene Yokota c2406c0648 Use real local to retrieve compiler bridge during test. Fixes #36 2015-12-24 05:36:31 -05:00
eugene yokota e73dc9b546 Merge pull request #27 from sbt/wip/010M8
bumping up to 0.1.0-M8
2015-12-24 01:11:15 -05:00
Eugene Yokota ee7e2889dc bumping up to 0.1.0-M8 2015-12-23 19:23:11 -05:00
eugene yokota 5dc798c165 Merge pull request #26 from Duhemm/scripted-core
Add scripted-core
2015-12-23 17:26:42 -05:00
eugene yokota 377d9c2bed Merge pull request #25 from sbt/wip/scalaversion
Scala version bump and minor addition to xsbti
2015-12-23 17:23:10 -05:00
Martin Duhem 23698d6664 Add scripted-core 2015-12-23 09:50:36 +01:00
Eugene Yokota 17f55850f6 Quieter log during scripted 2015-12-22 00:20:29 -05:00
Eugene Yokota 277cbd12ef Adds concrete classes 2015-12-17 00:57:24 -05:00
Eugene Yokota e392470394 Bump Scala version on Travis 2015-12-16 17:22:02 -05:00
Eugene Yokota 121972577d Define T2 as an interface. 2015-12-16 15:54:23 -05:00
Eugene Yokota 200b351552 Adds xsbti.T2. 2015-12-16 15:46:40 -05:00
Eugene Yokota 994634fc2c Adds xsbti.F1. 2015-12-16 15:28:00 -05:00
Eugene Yokota 1c2922a44b Bump up Scala version. Fixes #24 2015-12-16 15:27:00 -05:00
eugene yokota 2e42d36fae Merge pull request #23 from dwijnand/jline-2.13
Upgrade to jline 2.13
2015-12-09 21:23:17 -05:00
Dale Wijnand 1e5fa46cbd Upgrade to jline 2.13
Forward port of sbt/sbt#2173. Fixes #22
2015-12-09 14:12:53 +00:00
eugene yokota a9d80cf38c Merge pull request #2281 from eamelink/bugfix-1982
Fix search result highlighting on Windows
2015-11-27 15:36:50 -05:00
Johannes Rudolph 0e0a30fd6f update notes 2015-11-26 14:43:44 +01:00
Johannes Rudolph 8e43a2fd02 Better wording 2015-11-26 14:43:22 +01:00
Johannes Rudolph ce4c20dc60 Better README wording 2015-11-26 14:36:04 +01:00
Johannes Rudolph cea712c050 Merge branch '0.8' and fix README 2015-11-26 14:34:57 +01:00
Johannes Rudolph 21ccad2109 fix notes 2015-11-26 14:32:22 +01:00
Johannes Rudolph 5655b98c1e Fix links in README 2015-11-26 13:35:01 +01:00
Johannes Rudolph 90923e9be5 fix scripted tests 2015-11-26 13:31:55 +01:00
Johannes Rudolph 7b7f4d983f update README / notes 2015-11-26 13:31:55 +01:00
Johannes Rudolph 2a54348003 fall back on ivy report XML for sbt < 0.13.6 2015-11-26 13:31:55 +01:00
Johannes Rudolph 21e5b7ce5b refactoring 2015-11-26 11:56:00 +01:00
Johannes Rudolph 83a311b4af make it compile again with sbt 0.13.6 2015-11-26 11:53:47 +01:00
eugene yokota d0344c54e8 Merge pull request #2287 from xuwei-k/inputTask-typo
fix typo
2015-11-25 10:51:13 -05:00
Johannes Rudolph a821b27809 bump version to 0.8.0 and update README to reflect changes 2015-11-25 16:50:30 +01:00
xuwei-k 84e8f20080 fix typo 2015-11-25 20:01:22 +09:00
Martin Duhem 85a05ed237 Fix command and definition of compiler bridge
The compiler bridge had a dependency on the scala compiler in the
version defined in the build definition. This means that when trying to
fetch the compiler bridge for, say, Scala 2.9.2, we would also pull in
the Scala compiler 2.10.5.

The compiler bridge now has a "provided" dependency on the Scala
compiler.
2015-11-23 15:44:23 +01:00