Guillaume Massé
ad3acd86f4
Optimize the screen space for dependencyBrowseGraph
2020-07-13 15:27:05 -04:00
Johannes Rudolph
221e5fb7a1
Expand note and ask for help from users
2019-10-21 11:07:04 +02:00
Brice Jaglin
17d25ccc44
Disable cached resolution for ignoreMissingUpdate ( #184 )
...
Before 7992dc9 , a custom, non-cached-resolution-aware update task was
used to generate the report that the tree is based on, effectively
ignoring the cached resolution flag at the project level.
Starting 7992dc9 , this plugin, when run with sbt 0.13.8 or sbt 1.2.5+,
relies on cached-resolution-backed reports for projects that have
the engine enabled via `updateOptions`. Other 1.x releases are not
directly impacted as sbt had a buggy implementation of the feature
anyway, see https://github.com/sbt/sbt/issues/3761 .
Cached resolution has the side effect of generating an ivy report
with artificial module descriptors which makes it hard to reconstruct
the tree without inlining sbt internals (see below), so this
effectively ignores it *for the purpose of the tree generation*, even
if the project enabled it for the regular report.
ModuleId(
org.scala-sbt.temp,
temp-resolve-e2a956132f02c038285b41b374c02f5838076f37,
1.0
)
https://github.com/sbt/librarymanagement/blob/984de6f/ivy/src/main/scala/sbt/internal/librarymanagement/ivyint/CachedResolutionResolveEngine.scala#L137
2019-09-07 14:03:56 +02:00
Johannes Rudolph
d2dd796fd7
Reinstate documentation for new features
...
This reverts commit a093b91433 .
2019-07-24 08:21:05 +02:00
Johannes Rudolph
b4eae629a6
Releasing 0.10.0-RC1
2019-07-24 08:20:09 +02:00
Johannes Rudolph
6e8ab67219
Adapt README again because reason given was probably wrong
...
It seems the problem might already be fixed in master.
2019-05-17 22:10:37 +02:00
Johannes Rudolph
39609b0d3e
Add note that sbt 1.3.x is currently unsupported
2019-05-17 22:04:03 +02:00
Johannes Rudolph
a093b91433
Revert to old README until new version has been released
2019-05-17 21:51:09 +02:00
Johannes Rudolph
c7a9059c1a
Merge pull request #172 from sullis/sbt-1.2.7
...
sbt 1.2.7
2018-12-18 09:41:49 +01:00
Sean Sullivan
f9aeec3a5e
sbt 1.2.7
2018-12-17 17:03:17 -08:00
Johannes Rudolph
de4d508f4e
Merge pull request #166 from jrudolph/rename-our-own-update-task
...
Rename our own update task to something else so we don't conflict with other task scopes
2018-09-15 16:04:51 +02:00
Johannes Rudolph
c117be2091
Rename our own update task to something else so we don't conflict with other task scopes
2018-09-15 15:04:12 +02:00
Johannes Rudolph
49ad75aaa5
Merge pull request #165 from jrudolph/jr/consistent-outputs
...
For common operations introduce `asString`, `printToConsole`, and `toFile` subtasks, fixes #164
2018-09-15 12:43:46 +02:00
Johannes Rudolph
8aa58cd8ff
For common operations introduce `asString`, `printToConsole`, and `toFile` subtasks, fixes #164
2018-09-14 17:56:49 +02:00
Johannes Rudolph
01ac4ddb84
Merge pull request #163 from jrudolph/jr/remove-updateTask-copies
...
Get rid of local updateTask copy by using `inTask` instead, fixes #148
2018-09-14 15:12:26 +02:00
Johannes Rudolph
7992dc91f8
Get rid of local updateTask copy by using `inTask` instead, fixes #148
2018-09-14 15:00:47 +02:00
Johannes Rudolph
2836f83286
Add changelog entry for dependencyBrowseTree and move it a bit down in documentation
2018-09-14 14:33:50 +02:00
Johannes Rudolph
83d3e3a5df
Merge pull request #136 from pcejrowski/master
...
Added dependencyBrowseTreeHTML and dependencyBrowseTree tasks
2018-09-14 14:28:59 +02:00
Pawel Cejrowski
eac51150a7
Added dependencyBrowseTreeHTML and dependencyBrowseTree tasks
2018-09-12 20:48:21 +02:00
Johannes Rudolph
5ef1db0a9d
Prepare 0.9.2
2018-08-26 19:18:59 +02:00
Johannes Rudolph
e4943b2163
Merge pull request #161 from jrudolph/update-sbt
...
Update sbt to 1.2.1
2018-08-23 22:32:26 +02:00
Johannes Rudolph
41caf67757
Also run with latest sbt 1.2.1
2018-08-23 22:22:07 +02:00
Johannes Rudolph
1d8649ea6e
Merge pull request #159 from jrudolph/fix-95
...
Don't fail in parsing when whatDependsOn is called without running any other command first, fixes #95
2018-08-23 22:14:01 +02:00
Johannes Rudolph
9a5d51902b
Merge pull request #160 from jrudolph/add-travis-caching
...
Add travis caching
2018-08-23 22:13:49 +02:00
Johannes Rudolph
06c3503e1b
Build with latest sbt 1.2.1
2018-08-23 17:07:50 +02:00
Johannes Rudolph
59fe1b6b5e
add travis caching
2018-08-23 17:04:40 +02:00
Johannes Rudolph
6b176a9ca1
Don't fail in parsing when whatDependsOn is called without running any other command first, fixes #95
...
If no other command was run first, tab completion runs now in degraded mode
again, not showing any concrete suggestions but just the general syntax.
This probably regressed in #155 where I probably couldn't remember the reason
for the fallback...
2018-08-23 16:53:32 +02:00
Johannes Rudolph
3cfb4a110c
Merge pull request #158 from MasseGuillaume/patch-2
...
Avoid http redirect in dependencyBrowseGraph
2018-08-03 15:43:58 +02:00
Guillaume Massé
23e1480e07
Avoid http redirect in dependencyBrowseGraph
...
I published a dependency graph at https://github.com/MasseGuillaume/spark-dependency-graph
and I noticed that https://cpettitt.github.io/project/graphlib-dot/v0.6.1/graphlib-dot.js redirects to
http://www.samsarin.com/project/graphlib-dot/v0.6.1/graphlib-dot.js
this causes the script to fail over insecure content.
2018-08-03 14:03:55 +02:00
Johannes Rudolph
cf7926d4f5
Automatic reformattig
...
Somehow this one was missed to be published before.
2018-07-17 12:13:58 +02:00
Johannes Rudolph
90f6cedb34
Merge pull request #157 from jrudolph/release-0.9.1
...
Release notes for 0.9.1
2018-07-17 12:04:53 +02:00
Johannes Rudolph
aac468140f
Merge pull request #155 from jrudolph/whatDependsOn-without-version
...
What depends on without version
2018-07-17 12:01:51 +02:00
Johannes Rudolph
f4bbf28459
Release notes for 0.9.1
2018-07-17 12:01:33 +02:00
Johannes Rudolph
9305521f19
Add test for whatDependsOn
2018-07-17 11:51:13 +02:00
Johannes Rudolph
1c35c67df3
Merge pull request #156 from jrudolph/fix-150
...
Derive resolution-cache dir location from ivyConfiguration, fixes #150
2018-07-17 11:50:06 +02:00
Johannes Rudolph
71f0e933d4
Derive resolution-cache dir location from ivyConfiguration, fixes #150
2018-07-17 11:41:31 +02:00
Johannes Rudolph
6dbcad89d6
Merge master and adapt solution
...
A new case class ArtifactPattern was created which models both searching with
and without version.
2018-07-16 14:59:16 +02:00
Johannes Rudolph
e597bcf804
Merge pull request #154 from jrudolph/modernize-build
...
Update to sbt 1.1.6
2018-07-16 12:09:59 +02:00
Johannes Rudolph
321f70b17f
Update to sbt 1.1.6
...
+ new plugin versions
+ new dependency versions
+ freshly autoformatted
2018-07-16 11:59:20 +02:00
Johannes Rudolph
18a0705139
Merge pull request #115 from dmcnelis/master
...
Adding a clarifying remark to the whatDependsOn command, to make it c…
2018-07-16 11:44:39 +02:00
Johannes Rudolph
978c3c4e2c
Move the sbt invocation notice
2018-07-16 11:44:03 +02:00
Johannes Rudolph
3e41ea7965
Merge pull request #152 from xuwei-k/procedure-syntax
...
fix procedure syntax
2018-07-16 11:38:50 +02:00
xuwei-k
b3fd3ce7e4
fix procedure syntax
2018-05-23 13:15:49 +09:00
Johannes Rudolph
3b1207e9c2
Merge pull request #151 from leifwickland/patch-1
...
Fix minor typo
2018-04-11 17:09:47 +02:00
Leif Wickland
6f4dfaa45e
Fix minor typo.
2018-04-10 10:22:48 -06:00
Johannes Rudolph
5e3bbdb8c2
README: sbt 0.13 is only supported starting from 0.13.10
...
Fixes #148 .
2018-01-02 13:55:48 +01:00
Johannes Rudolph
1a56850401
Merge pull request #142 from xuwei-k/patch-1
...
use oraclejdk8
2017-10-26 09:41:09 +02:00
kenji yoshida
6cff0c5e8d
use oraclejdk8
...
travis-ci no longer support oraclejdk7
https://github.com/travis-ci/travis-ci/issues/7884#issuecomment-308451879
2017-10-26 13:33:28 +09:00
Johannes Rudolph
5e0aa1d0fc
Add dates to released versions
...
It's been a long ride... almost six years by now :)
2017-10-25 17:59:24 +02:00
Johannes Rudolph
d9b159ba8a
Replace notes file by a single CHANGELOG.md
2017-10-25 17:54:18 +02:00