Skip to content

Commit e89aec8

Browse files
committed
follow-up to sbt 1.x changes
1 parent a0837c2 commit e89aec8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Once you've started an `sbt` session you can run one of the core commands:
125125
If a command results in an error message like `a module is not authorized to depend on
126126
itself`, it may be that a global SBT plugin (such as [Ensime](http://ensime.org/)) is
127127
resulting in a cyclical dependency. Try disabling global SBT plugins (perhaps by
128-
temporarily commenting them out in `~/.sbt/0.13/plugins/plugins.sbt`).
128+
temporarily commenting them out in `~/.sbt/1.0/plugins/plugins.sbt`).
129129

130130
#### Sandbox
131131

admin/init.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ sensitive >/dev/null 2>&1
1515
gpg --list-keys
1616
gpg --list-secret-keys
1717

18-
mkdir -p ~/.sbt/0.13/plugins
19-
cp files/gpg.sbt ~/.sbt/0.13/plugins/
18+
mkdir -p ~/.sbt/1.0/plugins
19+
cp files/gpg.sbt ~/.sbt/1.0/plugins/

scripts/common

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function checkAvailability () {
8282
# Only used on Jenkins
8383
# Generate a repositories file with all allowed repositories in our build environment.
8484
# Takes a variable number of additional repositories as argument.
85-
# See http://www.scala-sbt.org/0.13/docs/Proxy-Repositories.html
85+
# See https://www.scala-sbt.org/1.x/docs/Proxy-Repositories.html
8686
function generateRepositoriesConfig() {
8787
echo > "$sbtRepositoryConfig" '[repositories]'
8888
if [[ $# -gt 0 ]]; then

0 commit comments

Comments
 (0)