How to configure Ivy cache directory per-user or system-wide?
Asked Answered
F

7

38

I am using SBT as my build tool for building a Scala project.

My problem is, I can't configure SBT to download dependencies to my user home directory. Therefore I am looking for a per-user or even better a system-wide setting to tell SBT to put the Ivy cache directory somewhere else.

With maven there is the per-user settings.xml that can be used to configure the local repository.

I have read question How to override the location of Ivy’s Cache? and it's answers, but it seems it only describes how to configure the setting on a per project basis.

If there is no alternative I would go for a per-project setting, but I didn't get the answer from the mentioned question to work. Some more details would be most welcome, for example where to put the ivysettings.xml. I put it into the project's root directory and it didn't work.

Fauch answered 29/6, 2010 at 16:50 Comment(0)
K
32

You can simply add an environment variable to your sbt launch shell script:

java -Dsbt.ivy.home=/tmp/.ivy2/ ...

See Library Management in the official documentation.

Kilpatrick answered 1/8, 2010 at 11:52 Comment(3)
That's a good idea! I will try it and if it works, your answer will be the solution.Fauch
Thanks for updating the answer to sbt 0.9/0.10. I was just about to provide such an answer myself when I saw this.Fauch
where is 'sbt launch shell script' ?Koodoo
R
50

The sbt.ivy.home property is only half of the solution. It controls where the sbt launcher downloads sbt itself (and related dependencies like the scala compiler and library, etc.) As noted by Joachim Hofer, it has no effect on where the dependencies declared by your project get downloaded.

To change that location, you must set the ivy.home property. So, to augment Joachim's first solution, you would set both system properties:

java -Dsbt.ivy.home=/tmp/.ivy2/ -Divy.home=/tmp/.ivy2/ -jar `dirname $0`/sbt-launch.jar "$@"

With these properties, the launcher will download both your project's and sbt's dependencies to the /tmp/.ivy2/ directory. Of course, you can put them in separate directories as well.

Radiotransparent answered 5/11, 2011 at 2:26 Comment(5)
Thanks - this worked for me on sbt 0.7.7 whereas the other solution is sbt 0.9 and up-specific.Hulda
I know this is an old post, but this info was excellent and if anyone needs - you can add the information above into the file "sbtconfig.txt" located in the folder SBT/Conf at the bottom: -Dsbt.ivy.home=j:/tmp/.ivy2/ -Divy.home=j:/tmp/.ivy2/Stephenstephenie
@Stephenstephenie "sbtconfig.txt" (Windows only) is a configuration file that lists JVM options, and is used by sbt.bat. sbtopts is used by sbt shell script.Disengage
And for Intellij setup see this "teliatko/ivy-home-sbt-idea.md" gist.github.com/teliatko/127f4ec7e5362f1f5cc68ade9f1221acPictor
Better to use IntelliJ's UI. Setting > Build, Execution > Build Tools > sbt. And add the -Dsbt.ivy.home=/tmp/.ivy2/ -Divy.home=/tmp/.ivy2/ in the VM parameter box.Disengage
K
32

You can simply add an environment variable to your sbt launch shell script:

java -Dsbt.ivy.home=/tmp/.ivy2/ ...

See Library Management in the official documentation.

Kilpatrick answered 1/8, 2010 at 11:52 Comment(3)
That's a good idea! I will try it and if it works, your answer will be the solution.Fauch
Thanks for updating the answer to sbt 0.9/0.10. I was just about to provide such an answer myself when I saw this.Fauch
where is 'sbt launch shell script' ?Koodoo
B
8

You should use sbt-extras if you don't do already.

Then, it's simply a flag you pass it:

sbt -ivy /path/to/.ivy2
Bethsaida answered 9/12, 2013 at 7:35 Comment(1)
seems to be simply ignored for me - running sbt -ivy ~/.ivy2 App/run - still getting [error] (PlayCommons / update) java.io.IOException: Permission denied, file: /root/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.12.8.jarVerbal
H
3

Location of ivy files

I normally put the ivy.xml and ivysettings.xml files alongside by build file as follows:

build.xml
ivy.xml
ivysettings.xml

The ivy tasks resolve and retrieve should find both files.

For example:

<target name="init" description="--> retrieve dependencies with ivy">
    <ivy:retrieve pattern="lib/[conf]/[artifact].[ext]"/>
</target>

Odd, that it's not working for you.

User specific settings

You can emulate the maven settings file in a couple of ways

1) include directive within the project ivysettings.xml

<ivysettings>
    <include file="${user.home}/.ivy2/my-ivysettings.xml"/>
</ivysettings>

2) Set location from the build file

<target name="init" description="--> retrieve dependencies with ivy">
    <ivy:settings file="${user.home}/.ivy2/my-ivysettings.xml" />
    <ivy:retrieve pattern="lib/[conf]/[artifact].[ext]"/>
</target>

3) I've never tried this but I think you can override the default location using an ANT property

ant -Divy.settings.file=$HOME/.ivy2/my-ivysettings.xml
Hackbut answered 30/6, 2010 at 20:13 Comment(1)
Thank you for your answer, but it seems to me you are assuming I am using Ant together with Ivy. Maybe it isn't clear from my question, but I am using SBT as my build tool, not Ant. I will edit my question accordingly.Fauch
T
3

You can retrieve your home directory using Path.userHome.absolutePath, like shown below:

resolvers += Resolver.file("Local", file( Path.userHome.absolutePath + "/.ivy2/local"))(Resolver.ivyStylePatterns)

I suppose that you can also retrieve environment variables using System.getenv and concatenate in the same way, like shown below:

resolvers += Resolver.file("Local", file( System.getenv("IVY_HOME") + "/whatever/it/is"))(Resolver.ivyStylePatterns)
Tripura answered 4/3, 2014 at 15:15 Comment(0)
K
2

For editing the cache location during the SBT boot itself, see Sbt Launcher Configuration in the official documentation.

Basically, to get it to work system-wide, you'd have to:

  • Put a configuration file named sbt.boot.properties somewhere where it's accessible system-wide (the default one is listed at the link above).
  • Call the launcher with the additional system property sbt.boot.properties set to point to your configuration file.
  • Set the cache-directory entry (in the [ivy] section) to the location of your ivy cache.

This configuration doesn't seem to carry over to normal SBT usage, though, unfortunately.

Kilpatrick answered 8/11, 2010 at 9:39 Comment(3)
I thought I looked multiple times through the SBT documentation, but I never stumbled upon this. This looks like the proper answer to my question. Therefore I will flag this as the correct answer, after testing this.Fauch
It took me embarassingly long to find this, too... - beware that it doesn't move your Ivy home completely, just the cache directory. It's also very useful in the context of adding your own proxy (like Artifactory or Nexus) into the boot resolver chain.Kilpatrick
Actually, this properties file seems to work only during the boot process of SBT. :( - So, it looks like we're back to the user.home hack...Kilpatrick
D
2
sbt -ivy /tmp/.ivy2 compile

Reference: man sbt

Options: -ivy path: path to local Ivy repository (default: ~/.ivy2)

Diacritical answered 21/7, 2017 at 11:40 Comment(1)
seems to be simply ignored for me - running sbt -ivy ~/.ivy2 App/run - still getting [error] (PlayCommons / update) java.io.IOException: Permission denied, file: /root/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.12.8.jarVerbal

© 2022 - 2024 — McMap. All rights reserved.