fkorotkov
a6f83dda97
added a note
2015-07-16 15:23:24 -04:00
fkorotkov
4c86117b79
Line content from diagnostic classes if available
2015-07-16 15:23:23 -04:00
eugene yokota
0504b162ff
Merge pull request #2111 from dwijnand/move-pr-2085-notes
...
Move PR 2085 notes.
2015-07-16 11:29:50 -04:00
Dale Wijnand
5428c07420
Move PR 2085 notes.
2015-07-16 16:24:45 +01:00
Martin Duhem
3195d7256e
Notes
2015-07-16 15:46:14 +02:00
Martin Duhem
cbd5cd5875
Fix inlined method
2015-07-16 15:34:04 +02:00
Martin Duhem
8ba5b6f90e
Don't set `publishMavenStyle := true` for compiler interface
2015-07-16 14:02:25 +02:00
Martin Duhem
f3dc2ba282
Revive comment about sbt's build complications
2015-07-16 13:53:10 +02:00
Martin Duhem
90a8423d8e
Find most specific version of compiler interface sources
...
This commit introduces a mechanism that allows sbt to find the most
specific version of the compiler interface sources that exists using
Ivy.
For instance, when asked for a compiler interface for Scala 2.11.8-M2,
sbt will look for sources for:
- 2.11.8-M2 ;
- 2.11.8 ;
- 2.11 ;
- the default sources.
This commit also modifies the build definition by removing the
precompiled projects and configuring the compiler-interface project so
that it publishes its source artifacts in a Maven-friendly format.
2015-07-16 11:18:48 +02:00
Josh Suereth
4abc8386f2
Merge pull request #2085 from twitter-forks/stuhood/java-static-final-fields-as-singletons
...
Encode static-final constant fields as Singletons
2015-07-14 12:35:56 -04:00
Stu Hood
e3ba86fdbb
Add notes for the change
2015-07-13 21:38:48 -07:00
Stu Hood
7e7aca5f55
Mismatch APIs on type changes as well
2015-07-13 21:29:14 -07:00
Josh Suereth
4d83cd5134
Merge pull request #2102 from pdalpra/remove-public-java-interfaces
...
Remove redundant public modifier in Java interfaces
2015-07-12 10:31:12 -04:00
Pierre DAL-PRA
ec0ffad345
Remove redundant public modifier in Java interfaces
2015-07-11 00:11:17 +02:00
eugene yokota
67d908a4a6
Merge pull request #2101 from sbt/0.13.9
...
merge 0.13.9 on 0.13
2015-07-10 16:07:05 -04:00
Josh Suereth
9b714151ec
Merge pull request #2097 from sbt/wip/2046
...
Fixes #2046 . Cached resolution: Fixes double eviction
2015-07-10 15:24:41 -04:00
Josh Suereth
90cfcb4543
Merge pull request #2098 from pdalpra/fix-build-warnings
...
Fix most SBT's build warnings
2015-07-10 14:21:53 -04:00
Josh Suereth
0e861c9867
Merge pull request #2094 from pdalpra/public-null-logger
...
Make Logger.null public + minor clean up
2015-07-10 12:48:46 -04:00
Josh Suereth
b52f11535d
Merge pull request #2095 from adriaanm/ListBuffer
...
Do not use `ListBuffer#readOnly`
2015-07-10 12:47:34 -04:00
Eugene Yokota
0b718bb3fa
notes
2015-07-10 11:40:38 -04:00
Eugene Yokota
fdf8ee5146
Back out 98d81a62f9
2015-07-10 11:16:19 -04:00
Pierre DAL-PRA
3ffa333c14
Fix most build warnings
2015-07-10 11:53:48 +02:00
Stu Hood
a80c3e2bb8
Review feedback
2015-07-09 22:01:05 -07:00
Eugene Yokota
22c743cf8a
#1763 fix by removing one but all artificial callers
2015-07-10 00:10:23 -04:00
Eugene Yokota
98d81a62f9
Switch to serialization for UpdateReport cache
2015-07-09 21:23:31 -04:00
Eugene Yokota
8cde12887e
Ref #2068 . Scala version bump needs to accompany scala-reflect bump.
2015-07-09 21:20:47 -04:00
Eugene Yokota
5412376d4b
#1763 Remove artificial callers
2015-07-09 21:17:47 -04:00
Adriaan Moors
a355012c2e
Do not use `ListBuffer#readOnly`
...
It's dangerous, deprecated, and was removed in 2.12.0-M1.
See https://github.com/scala/scala/pull/4140 .
`ListBuffer#toList` has equivalent performance,
except it actually returns an immutable copy(-on-write).
2015-07-09 14:49:08 -07:00
Pierre DAL-PRA
ea0abefac9
Add notes
2015-07-09 23:45:01 +02:00
Pierre DAL-PRA
4e9626eb68
Minor clean up
2015-07-09 22:59:05 +02:00
Pierre DAL-PRA
771f08cb61
Make Logger.Null public
2015-07-09 22:58:47 +02:00
Eugene Yokota
2994622ad4
Fixes #2046 , Ref #1760 Fix minigraph stitching
...
This fixes the minigraph stitching logic by first sorting the graph
based on the level of inter-dependencies, and gradually resolving
conflict from the root-side that are not called by other libraries.
For each eviction, transitive evictions are propagated right away to
avoid double eviction observed in #2046
For the transitive eviction checking I needed to bring back the caller
information, which is notorious for its size. I am stuffing all
ModuleIDs into one ModuleID for the graph, and recovering them only
during the merging process.
2015-07-09 15:57:21 -04:00
Josh Suereth
d2fdfb81a0
Merge pull request #2091 from Duhemm/hide-stacktrace
...
Don't show the stack trace on compilation error in build definition
2015-07-09 14:26:03 -04:00
Josh Suereth
62679b21a3
Merge pull request #2092 from pdalpra/keys-typos
...
Fix a few typos in keys descriptions
2015-07-09 14:24:08 -04:00
Pierre DAL-PRA
cf72c7cc0e
Fix a few typos in keys descriptions
2015-07-09 17:00:48 +02:00
Martin Duhem
6c123f22ba
Hide stacktrace on compilation error in build definition
2015-07-09 11:40:02 +02:00
Eugene Yokota
5256e64263
Reproduce #2046
2015-07-09 01:52:00 -04:00
Stu Hood
aa11e9ca87
Improve comments
2015-07-07 10:56:51 -07:00
Stu Hood
592b19b35e
Add non-string tests
2015-07-07 10:25:27 -07:00
Stu Hood
2982018e5a
Parse ClassFile as a lazy val, and provide it to fieldToDef
2015-07-07 10:25:16 -07:00
Stu Hood
cc052b598c
Add test for stable APIs with identical constants
2015-07-06 16:54:02 -07:00
Stu Hood
d52b6bfce7
Add tests missed during initial patch port
2015-07-06 12:50:14 -07:00
Stu Hood
a83f5eabf2
Add missing dependency
2015-07-06 11:11:06 -07:00
Stu Hood
6846bbd3ed
Encode static-final constant fields as Singletons, so that when the api changes, they change.
2015-07-01 21:37:32 -07:00
Josh Suereth
47a9a6db05
Merge pull request #2084 from ypg-data/jonas/fix-annotation-typos
...
Fix typos in annotations referring to EvaluateTaskConfig
2015-07-01 11:38:01 -05:00
Jonas Fonseca
54618ad55a
Fix typos in annotations referring to EvaluateTaskConfig
2015-07-01 09:22:15 -04:00
Eugene Yokota
a9f0a16486
Merge notes
2015-06-28 22:06:52 -04:00
eugene yokota
f44f4540db
Merge pull request #2079 from sbt/wip/distinct-rename
...
Fixes #1973 . Renames distinct to distinctName
2015-06-28 21:58:46 -04:00
Eugene Yokota
16b95a4d62
Add distinctPath
2015-06-28 14:41:32 -04:00
eugene yokota
84d43e4710
Merge pull request #2080 from dwijnand/add-notes-for-2009
...
Add notes for #2008/#2009.
2015-06-28 10:46:21 -04:00