mirror of https://github.com/sbt/sbt.git
Merge pull request #1291 from jaceklaskowski/docs-externalIvyFile
Def.setting needed for externalIvyFile
This commit is contained in:
commit
71b3d5ea30
|
|
@ -620,7 +620,7 @@ or
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
externalIvyFile(baseDirectory.value / "custom-name.xml")
|
externalIvyFile(Def.setting(baseDirectory.value / "custom-name.xml"))
|
||||||
|
|
||||||
Because Ivy files specify their own configurations, sbt needs to know
|
Because Ivy files specify their own configurations, sbt needs to know
|
||||||
which configurations to use for the compile, runtime, and test
|
which configurations to use for the compile, runtime, and test
|
||||||
|
|
@ -642,7 +642,7 @@ or
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
externalPom(baseDirectory.value / "custom-name.xml")
|
externalPom(Def.setting(baseDirectory.value / "custom-name.xml"))
|
||||||
|
|
||||||
Full Ivy Example
|
Full Ivy Example
|
||||||
~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~
|
||||||
|
|
@ -653,7 +653,7 @@ For example, a `build.sbt` using external Ivy files might look like:
|
||||||
|
|
||||||
externalIvySettings()
|
externalIvySettings()
|
||||||
|
|
||||||
externalIvyFile(baseDirectory.value / "ivyA.xml")
|
externalIvyFile(Def.setting(baseDirectory.value / "ivyA.xml"))
|
||||||
|
|
||||||
classpathConfiguration in Compile := Compile
|
classpathConfiguration in Compile := Compile
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue